From 6cea88f5ecf6f1bf663b51bb7cf57e2660f89cca Mon Sep 17 00:00:00 2001 From: Jay Boice Date: Thu, 9 Jan 2025 14:17:02 -0500 Subject: [PATCH] Add respiratory virus charts to storybook --- .../Chart.RespiratoryVirus.stories.tsx | 145 + ...spiratory-Virus-Activity-Age_relative.json | 1105 ++ ...iratory-Virus-Activity-rasc-ethnicity.json | 416 + .../Respiratory-Virus-Activity-sex.json | 392 + .../Viral-Hospitalization-Age-Group.json | 1182 +++ .../Viral-Hospitalization-race-ethnicity.json | 1194 +++ .../Viral-Hospitalization-sex.json | 896 ++ .../Viral-Respiratory-Deaths-Age.json | 407 + ...-Respiratory-Deaths-race-ethnicity-v2.json | 1222 +++ .../Viral-Respiratory-Deaths-sex.json | 400 + .../covid-vaccination-intent-viz.json | 419 + .../covid-vaccination-trends-viz.json | 394 + .../flu-vaccination-intent-viz.json | 420 + .../flu-vaccination-trends-viz.json | 394 + .../rsv-vaccination-intent-viz.json | 409 + .../rsv-vaccination-trends-viz.json | 379 + ...est-in-percent-test-positivity-in-usa.json | 881 ++ .../_mock/respiratory-virus/trends-nhsn.json | 1088 ++ .../_mock/respiratory-virus/trends-rsv.json | 9292 +++++++++++++++++ .../trends-viral-deaths-2.json | 3700 +++++++ .../CdcMap.RespiratoryVirus.stories.tsx | 32 + .../_mock/respiratory-virus/ARI_Map_Viz.json | 180 + .../_mock/respiratory-virus/CFA_Map_Viz.json | 199 + .../respiratory-virus/wastewatermap.json | 233 + 24 files changed, 25379 insertions(+) create mode 100644 packages/chart/src/_stories/Chart.RespiratoryVirus.stories.tsx create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-Age_relative.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-rasc-ethnicity.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-sex.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-Age-Group.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-race-ethnicity.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-sex.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-Age.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-race-ethnicity-v2.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-sex.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-intent-viz.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-trends-viz.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-intent-viz.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-trends-viz.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-intent-viz.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-trends-viz.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/test-in-percent-test-positivity-in-usa.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/trends-nhsn.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/trends-rsv.json create mode 100644 packages/chart/src/_stories/_mock/respiratory-virus/trends-viral-deaths-2.json create mode 100644 packages/map/src/_stories/CdcMap.RespiratoryVirus.stories.tsx create mode 100644 packages/map/src/_stories/_mock/respiratory-virus/ARI_Map_Viz.json create mode 100644 packages/map/src/_stories/_mock/respiratory-virus/CFA_Map_Viz.json create mode 100644 packages/map/src/_stories/_mock/respiratory-virus/wastewatermap.json diff --git a/packages/chart/src/_stories/Chart.RespiratoryVirus.stories.tsx b/packages/chart/src/_stories/Chart.RespiratoryVirus.stories.tsx new file mode 100644 index 000000000..4c3817fe2 --- /dev/null +++ b/packages/chart/src/_stories/Chart.RespiratoryVirus.stories.tsx @@ -0,0 +1,145 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import Chart from '../CdcChart' + +const meta: Meta = { + title: 'Components/Templates/Chart/Respiratory Virus', + component: Chart +} + +type Story = StoryObj + +import test_in_percent_test_positivity_in_usa_json from './_mock/respiratory-virus/test-in-percent-test-positivity-in-usa.json' +export const test_in_percent_test_positivity_in_usa: Story = { + args: { + config: test_in_percent_test_positivity_in_usa_json + } +} + +import trends_nhsn_json from './_mock/respiratory-virus/trends-nhsn.json' +export const trends_nhsn: Story = { + args: { + config: trends_nhsn_json + } +} + +import trends_rsv_json from './_mock/respiratory-virus/trends-rsv.json' +export const trends_rsv: Story = { + args: { + config: trends_rsv_json + } +} + +import trends_viral_deaths_2_json from './_mock/respiratory-virus/trends-viral-deaths-2.json' +export const trends_viral_deaths_2: Story = { + args: { + config: trends_viral_deaths_2_json + } +} + +import Respiratory_Virus_Activity_Age_relative_json from './_mock/respiratory-virus/Respiratory-Virus-Activity-Age_relative.json' +export const Respiratory_Virus_Activity_Age_relative: Story = { + args: { + config: Respiratory_Virus_Activity_Age_relative_json + } +} + +import Viral_Hospitalization_Age_Group_json from './_mock/respiratory-virus/Viral-Hospitalization-Age-Group.json' +export const Viral_Hospitalization_Age_Group: Story = { + args: { + config: Viral_Hospitalization_Age_Group_json + } +} + +import Viral_Respiratory_Deaths_Age_json from './_mock/respiratory-virus/Viral-Respiratory-Deaths-Age.json' +export const Viral_Respiratory_Deaths_Age: Story = { + args: { + config: Viral_Respiratory_Deaths_Age_json + } +} + +import Respiratory_Virus_Activity_rasc_ethnicity_json from './_mock/respiratory-virus/Respiratory-Virus-Activity-rasc-ethnicity.json' +export const Respiratory_Virus_Activity_rasc_ethnicity: Story = { + args: { + config: Respiratory_Virus_Activity_rasc_ethnicity_json + } +} + +import Viral_Hospitalization_race_ethnicity_json from './_mock/respiratory-virus/Viral-Hospitalization-race-ethnicity.json' +export const Viral_Hospitalization_race_ethnicity: Story = { + args: { + config: Viral_Hospitalization_race_ethnicity_json + } +} + +import Viral_Respiratory_Deaths_race_ethnicity_v2_json from './_mock/respiratory-virus/Viral-Respiratory-Deaths-race-ethnicity-v2.json' +export const Viral_Respiratory_Deaths_race_ethnicity_v2: Story = { + args: { + config: Viral_Respiratory_Deaths_race_ethnicity_v2_json + } +} + +import Respiratory_Virus_Activity_sex_json from './_mock/respiratory-virus/Respiratory-Virus-Activity-sex.json' +export const Respiratory_Virus_Activity_sex: Story = { + args: { + config: Respiratory_Virus_Activity_sex_json + } +} + +import Viral_Hospitalization_sex_json from './_mock/respiratory-virus/Viral-Hospitalization-sex.json' +export const Viral_Hospitalization_sex: Story = { + args: { + config: Viral_Hospitalization_sex_json + } +} + +import Viral_Respiratory_Deaths_sex_json from './_mock/respiratory-virus/Viral-Respiratory-Deaths-sex.json' +export const Viral_Respiratory_Deaths_sex: Story = { + args: { + config: Viral_Respiratory_Deaths_sex_json + } +} + +import covid_vaccination_trends_viz_json from './_mock/respiratory-virus/covid-vaccination-trends-viz.json' +export const covid_vaccination_trends_viz: Story = { + args: { + config: covid_vaccination_trends_viz_json + } +} + +import covid_vaccination_intent_viz_json from './_mock/respiratory-virus/covid-vaccination-intent-viz.json' +export const covid_vaccination_intent_viz: Story = { + args: { + config: covid_vaccination_intent_viz_json + } +} + +import flu_vaccination_trends_viz_json from './_mock/respiratory-virus/flu-vaccination-trends-viz.json' +export const flu_vaccination_trends_viz: Story = { + args: { + config: flu_vaccination_trends_viz_json + } +} + +import flu_vaccination_intent_viz_json from './_mock/respiratory-virus/flu-vaccination-intent-viz.json' +export const flu_vaccination_intent_viz: Story = { + args: { + config: flu_vaccination_intent_viz_json + } +} + +import rsv_vaccination_trends_viz_json from './_mock/respiratory-virus/rsv-vaccination-trends-viz.json' +export const rsv_vaccination_trends_viz: Story = { + args: { + config: rsv_vaccination_trends_viz_json + } +} + +import rsv_vaccination_intent_viz_json from './_mock/respiratory-virus/rsv-vaccination-intent-viz.json' +export const rsv_vaccination_intent_viz: Story = { + args: { + config: rsv_vaccination_intent_viz_json + } +} + +export default meta diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-Age_relative.json b/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-Age_relative.json new file mode 100644 index 000000000..6c88915d0 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-Age_relative.json @@ -0,0 +1,1105 @@ +{ + "annotations": [], + "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": "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": "50", + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "show": { + "key": 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", + "label": "Age", + "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, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "7.7", + "5-17 years": "3.2", + "18-64 years": "1.8", + "65+ years": "3.3" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "8.4", + "5-17 years": "3.7", + "18-64 years": "1.8", + "65+ years": "3.2" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "9.7", + "5-17 years": "4.5", + "18-64 years": "1.9", + "65+ years": "3.2" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "11.0", + "5-17 years": "5.8", + "18-64 years": "2.2", + "65+ years": "3.4" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "13.5", + "5-17 years": "9.9", + "18-64 years": "2.9", + "65+ years": "3.8" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "15.9", + "5-17 years": "13.0", + "18-64 years": "3.9", + "65+ years": "4.2" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "17.0", + "5-17 years": "13.3", + "18-64 years": "4.0", + "65+ years": "4.4" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "17.6", + "5-17 years": "13.6", + "18-64 years": "4.4", + "65+ years": "4.7" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "20.4", + "5-17 years": "19.0", + "18-64 years": "6.9", + "65+ years": "7.0" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "20.4", + "5-17 years": "13.4", + "18-64 years": "7.3", + "65+ years": "8.0" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "18.8", + "5-17 years": "15.3", + "18-64 years": "6.5", + "65+ years": "7.6" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "17.4", + "5-17 years": "14.5", + "18-64 years": "6.2", + "65+ years": "7.5" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "15.8", + "5-17 years": "12.4", + "18-64 years": "6.3", + "65+ years": "8.1" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "14.6", + "5-17 years": "7.9", + "18-64 years": "6.2", + "65+ years": "8.8" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "11.4", + "5-17 years": "4.1", + "18-64 years": "4.4", + "65+ years": "7.1" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "8.0", + "5-17 years": "3.1", + "18-64 years": "3.0", + "65+ years": "4.9" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "6.5", + "5-17 years": "2.9", + "18-64 years": "2.5", + "65+ years": "4.0" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "5.5", + "5-17 years": "2.7", + "18-64 years": "2.2", + "65+ years": "3.5" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "4.9", + "5-17 years": "2.4", + "18-64 years": "2.1", + "65+ years": "3.4" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "4.2", + "5-17 years": "2.0", + "18-64 years": "2.0", + "65+ years": "3.3" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "3.7", + "5-17 years": "1.7", + "18-64 years": "1.8", + "65+ years": "3.2" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "3.4", + "5-17 years": "1.5", + "18-64 years": "1.7", + "65+ years": "3.1" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "3.0", + "5-17 years": "1.3", + "18-64 years": "1.5", + "65+ years": "2.8" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "2.7", + "5-17 years": "1.2", + "18-64 years": "1.3", + "65+ years": "2.4" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "2.5", + "5-17 years": "1.2", + "18-64 years": "1.2", + "65+ years": "2.3" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "2.4", + "5-17 years": "1.1", + "18-64 years": "1.2", + "65+ years": "2.2" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "2.2", + "5-17 years": "1.0", + "18-64 years": "1.1", + "65+ years": "2.0" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "2.1", + "5-17 years": "1.0", + "18-64 years": "1.0", + "65+ years": "1.9" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.9", + "5-17 years": "0.9", + "18-64 years": "0.9", + "65+ years": "1.7" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.7", + "5-17 years": "0.8", + "18-64 years": "0.8", + "65+ years": "1.5" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.7", + "5-17 years": "0.9", + "18-64 years": "0.7", + "65+ years": "1.3" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.7", + "5-17 years": "0.9", + "18-64 years": "0.7", + "65+ years": "1.2" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.6", + "5-17 years": "1.0", + "18-64 years": "0.7", + "65+ years": "1.2" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.5", + "5-17 years": "1.0", + "18-64 years": "0.7", + "65+ years": "1.2" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.6", + "5-17 years": "1.0", + "18-64 years": "0.6", + "65+ years": "1.1" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.6", + "5-17 years": "1.0", + "18-64 years": "0.6", + "65+ years": "1.1" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.5", + "5-17 years": "0.8", + "18-64 years": "0.6", + "65+ years": "1.0" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.5", + "5-17 years": "0.7", + "18-64 years": "0.6", + "65+ years": "1.0" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.6", + "5-17 years": "0.6", + "18-64 years": "0.6", + "65+ years": "0.9" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.5", + "5-17 years": "0.6", + "18-64 years": "0.6", + "65+ years": "1.0" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.8", + "5-17 years": "0.6", + "18-64 years": "0.6", + "65+ years": "1.1" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "1.9", + "5-17 years": "0.6", + "18-64 years": "0.7", + "65+ years": "1.1" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "2.2", + "5-17 years": "0.7", + "18-64 years": "0.8", + "65+ years": "1.3" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "2.8", + "5-17 years": "0.9", + "18-64 years": "1.0", + "65+ years": "1.5" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "3.3", + "5-17 years": "1.1", + "18-64 years": "1.2", + "65+ years": "1.9" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "4.0", + "5-17 years": "1.5", + "18-64 years": "1.4", + "65+ years": "2.2" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "4.7", + "5-17 years": "2.4", + "18-64 years": "1.7", + "65+ years": "2.5" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "5.4", + "5-17 years": "3.4", + "18-64 years": "2.1", + "65+ years": "3.0" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "5.2", + "5-17 years": "3.1", + "18-64 years": "2.2", + "65+ years": "3.1" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "5.2", + "5-17 years": "2.5", + "18-64 years": "2.2", + "65+ years": "3.3" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "4.7", + "5-17 years": "1.9", + "18-64 years": "1.9", + "65+ years": "3.1" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "4.7", + "5-17 years": "1.8", + "18-64 years": "1.8", + "65+ years": "3.1" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "4.9", + "5-17 years": "1.8", + "18-64 years": "1.6", + "65+ years": "3.0" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "5.2", + "5-17 years": "1.9", + "18-64 years": "1.4", + "65+ years": "2.7" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "6.0", + "5-17 years": "2.2", + "18-64 years": "1.4", + "65+ years": "2.5" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "7.1", + "5-17 years": "2.6", + "18-64 years": "1.5", + "65+ years": "2.6" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "8.2", + "5-17 years": "3.0", + "18-64 years": "1.6", + "65+ years": "2.6" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "9.3", + "5-17 years": "3.9", + "18-64 years": "1.7", + "65+ years": "2.5" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "10.8", + "5-17 years": "5.1", + "18-64 years": "2.1", + "65+ years": "2.9" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "12.1", + "5-17 years": "5.7", + "18-64 years": "2.4", + "65+ years": "3.2" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "13.5", + "5-17 years": "6.7", + "18-64 years": "2.9", + "65+ years": "3.9" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "14.4", + "5-17 years": "5.4", + "18-64 years": "3.5", + "65+ years": "4.3" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "14.9", + "5-17 years": "8.6", + "18-64 years": "3.8", + "65+ years": "4.6" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "16.7", + "5-17 years": "12.1", + "18-64 years": "4.8", + "65+ years": "5.3" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "19.1", + "5-17 years": "15.5", + "18-64 years": "6.5", + "65+ years": "7.0" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "20.7", + "5-17 years": "14.0", + "18-64 years": "8.0", + "65+ years": "9.1" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "18.7", + "5-17 years": "8.5", + "18-64 years": "6.6", + "65+ years": "7.8" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "16.0", + "5-17 years": "8.5", + "18-64 years": "5.2", + "65+ years": "6.2" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "14.8", + "5-17 years": "9.7", + "18-64 years": "4.5", + "65+ years": "5.0" + }, + { + "week_end": "2024-01-27", + "**Numeric Value Property**": "", + "pathogen": "", + "demographics_type": "", + "0-4 years": "13.3", + "5-17 years": "9.5", + "18-64 years": "4.3", + "65+ years": "4.3" + } + ], + "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": "% 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": "0-4 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "5-17 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "18-64 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "65+ years", + "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": "", + "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", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(Age).json", + "customColors": [ + "#197F38", + "#FA4E56", + "#A66EFF", + "#012551", + "#0A6C75", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(Age).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographics_values", + "xKey": "week_end", + "valueKeys": [ + "percent_visits" + ] + }, + "validated": "4.24.3", + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "RSV", + "Combined" + ], + "filterStyle": "dropdown", + "order": "asc", + "columnName": "pathogen", + "label": "Respiratory Illness", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(Age).json", + "dynamicMarginTop": 0, + "description": "
Data last updated on and presented through . View this dataset on data.cdc.gov.
\n", + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-rasc-ethnicity.json b/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-rasc-ethnicity.json new file mode 100644 index 000000000..9da2d3355 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-rasc-ethnicity.json @@ -0,0 +1,416 @@ +{ + "annotations": [], + "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": "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": "50", + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Race and Ethnicity", + "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, + "data": [], + "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": "% 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": "AI/AN, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Asian/NHOPI, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Black, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Hispanic", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Multiple/Other, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "White, NH", + "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": "", + "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, + "visualizationType": "Line", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(RaceEth).json", + "customColors": [ + "#197F38", + "#FA4E56", + "#A66EFF", + "#B28500", + "#1192E9", + "#012551", + "#00a089", + "#B28500", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(RaceEth).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographics_values", + "xKey": "week_end", + "valueKeys": [ + "percent_visits" + ], + "ignoredKeys": [ + "demographics_type" + ] + }, + "validated": "4.24.3", + "filters": [ + { + "values": [ + "RSV", + "Combined", + "COVID-19", + "Influenza" + ], + "filterStyle": "dropdown", + "columnName": "pathogen", + "order": "asc", + "label": "Respiratory Illness", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(RaceEth).json", + "dynamicMarginTop": 0, + "description": "
NH = non-Hispanic, AI/AN = American Indian/Alaska Native, NHOPI = Native Hawaiian, and Other Pacific Islander

Data last updated on and presented through . View this dataset on data.cdc.gov.
\n", + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-sex.json b/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-sex.json new file mode 100644 index 000000000..1506a974d --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Respiratory-Virus-Activity-sex.json @@ -0,0 +1,392 @@ +{ + "annotations": [], + "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": "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": "100", + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Sex", + "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, + "data": [], + "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": "% 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": "Female", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Male", + "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": "", + "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, + "visualizationType": "Line", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(Sex).json", + "customColors": [ + "#1192E9", + "#012551", + "#f4802a", + "#072768", + "#0A6C75", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(Sex).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographics_values", + "xKey": "week_end", + "valueKeys": [ + "percent_visits" + ], + "ignoredKeys": [ + "**Numeric Value Property**" + ] + }, + "validated": "4.24.3", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "RSV", + "Combined" + ], + "filterStyle": "dropdown", + "order": "asc", + "columnName": "pathogen", + "label": "Respiratory Illness", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined(Sex).json", + "description": "
Data last updated on and presented through . View this dataset on data.cdc.gov.
", + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-Age-Group.json b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-Age-Group.json new file mode 100644 index 000000000..5cb56ebf7 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-Age-Group.json @@ -0,0 +1,1182 @@ +{ + "annotations": [], + "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": "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": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Age", + "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, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "18.0", + "18-49 years": "2.9", + "5-17 years": "1.1", + "50-64 years": "5.7", + "65+ years": "23.3" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "23.0", + "18-49 years": "2.8", + "5-17 years": "2.1", + "50-64 years": "6.3", + "65+ years": "25.6" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "38.8", + "18-49 years": "2.9", + "5-17 years": "2.0", + "50-64 years": "6.9", + "65+ years": "27.3" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "44.0", + "18-49 years": "3.1", + "5-17 years": "2.5", + "50-64 years": "7.5", + "65+ years": "28.2" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "55.7", + "18-49 years": "3.5", + "5-17 years": "3.3", + "50-64 years": "8.5", + "65+ years": "31.0" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "68.0", + "18-49 years": "4.4", + "5-17 years": "5.3", + "50-64 years": "9.6", + "65+ years": "34.5" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "78.6", + "18-49 years": "4.9", + "5-17 years": "5.5", + "50-64 years": "10.9", + "65+ years": "37.7" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "72.1", + "18-49 years": "5.1", + "5-17 years": "4.8", + "50-64 years": "11.8", + "65+ years": "41.3" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "67.5", + "18-49 years": "6.7", + "5-17 years": "5.3", + "50-64 years": "15.7", + "65+ years": "53.1" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "63.2", + "18-49 years": "7.9", + "5-17 years": "5.2", + "50-64 years": "19.6", + "65+ years": "68.6" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "47.3", + "18-49 years": "7.0", + "5-17 years": "4.8", + "50-64 years": "19.0", + "65+ years": "63.7" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "38.0", + "18-49 years": "6.9", + "5-17 years": "4.6", + "50-64 years": "17.0", + "65+ years": "59.9" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "26.6", + "18-49 years": "6.1", + "5-17 years": "3.6", + "50-64 years": "16.6", + "65+ years": "58.6" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "23.7", + "18-49 years": "6.4", + "5-17 years": "2.6", + "50-64 years": "15.8", + "65+ years": "64.6" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "16.3", + "18-49 years": "5.3", + "5-17 years": "1.5", + "50-64 years": "13.6", + "65+ years": "54.7" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "13.2", + "18-49 years": "3.9", + "5-17 years": "1.3", + "50-64 years": "9.7", + "65+ years": "37.9" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "10.9", + "18-49 years": "3.3", + "5-17 years": "0.9", + "50-64 years": "8.0", + "65+ years": "30.3" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "9.4", + "18-49 years": "3.0", + "5-17 years": "1.0", + "50-64 years": "6.7", + "65+ years": "28.5" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "7.0", + "18-49 years": "2.6", + "5-17 years": "0.9", + "50-64 years": "7.2", + "65+ years": "25.5" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "7.4", + "18-49 years": "2.7", + "5-17 years": "1.2", + "50-64 years": "6.6", + "65+ years": "27.0" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "6.7", + "18-49 years": "2.6", + "5-17 years": "0.9", + "50-64 years": "6.2", + "65+ years": "26.7" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "6.2", + "18-49 years": "2.1", + "5-17 years": "0.7", + "50-64 years": "6.0", + "65+ years": "24.5" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "4.9", + "18-49 years": "2.2", + "5-17 years": "0.7", + "50-64 years": "5.5", + "65+ years": "22.8" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "4.5", + "18-49 years": "1.6", + "5-17 years": "0.6", + "50-64 years": "5.2", + "65+ years": "20.9" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "4.4", + "18-49 years": "1.8", + "5-17 years": "0.6", + "50-64 years": "4.4", + "65+ years": "18.5" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "4.6", + "18-49 years": "1.6", + "5-17 years": "0.5", + "50-64 years": "4.3", + "65+ years": "18.3" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "3.0", + "18-49 years": "1.3", + "5-17 years": "0.5", + "50-64 years": "3.7", + "65+ years": "16.0" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "2.3", + "18-49 years": "1.3", + "5-17 years": "0.4", + "50-64 years": "3.4", + "65+ years": "14.0" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "2.8", + "18-49 years": "1.1", + "5-17 years": "0.5", + "50-64 years": "3.3", + "65+ years": "13.8" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "2.0", + "18-49 years": "1.0", + "5-17 years": "0.4", + "50-64 years": "2.7", + "65+ years": "13.2" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.8", + "18-49 years": "0.9", + "5-17 years": "0.3", + "50-64 years": "2.2", + "65+ years": "10.8" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "2.0", + "18-49 years": "0.8", + "5-17 years": "0.2", + "50-64 years": "2.0", + "65+ years": "9.9" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.5", + "18-49 years": "0.8", + "5-17 years": "0.2", + "50-64 years": "1.8", + "65+ years": "9.3" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.9", + "18-49 years": "0.6", + "5-17 years": "0.2", + "50-64 years": "1.5", + "65+ years": "8.8" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.1", + "18-49 years": "0.6", + "5-17 years": "0.1", + "50-64 years": "1.7", + "65+ years": "8.2" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.1", + "18-49 years": "0.5", + "5-17 years": "0.1", + "50-64 years": "1.6", + "65+ years": "6.3" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.4", + "18-49 years": "0.5", + "5-17 years": "0.1", + "50-64 years": "1.0", + "65+ years": "5.9" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "0.7", + "18-49 years": "0.5", + "5-17 years": "0.1", + "50-64 years": "1.1", + "65+ years": "6.1" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.3", + "18-49 years": "0.4", + "5-17 years": "0.1", + "50-64 years": "1.1", + "65+ years": "5.7" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.2", + "18-49 years": "0.4", + "5-17 years": "0.1", + "50-64 years": "1.3", + "65+ years": "5.9" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.0", + "18-49 years": "0.4", + "5-17 years": "0.1", + "50-64 years": "1.0", + "65+ years": "5.8" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "0.8", + "18-49 years": "0.5", + "5-17 years": "0.0", + "50-64 years": "1.3", + "65+ years": "6.6" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.5", + "18-49 years": "0.6", + "5-17 years": "0.1", + "50-64 years": "1.4", + "65+ years": "7.1" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "1.8", + "18-49 years": "0.6", + "5-17 years": "0.1", + "50-64 years": "1.9", + "65+ years": "9.8" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "2.2", + "18-49 years": "0.8", + "5-17 years": "0.3", + "50-64 years": "1.9", + "65+ years": "10.3" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "3.0", + "18-49 years": "1.1", + "5-17 years": "0.4", + "50-64 years": "2.4", + "65+ years": "11.4" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "4.2", + "18-49 years": "1.0", + "5-17 years": "0.4", + "50-64 years": "2.4", + "65+ years": "14.1" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "4.7", + "18-49 years": "1.2", + "5-17 years": "0.6", + "50-64 years": "3.4", + "65+ years": "16.2" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "5.5", + "18-49 years": "1.3", + "5-17 years": "0.2", + "50-64 years": "3.3", + "65+ years": "17.3" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "6.4", + "18-49 years": "1.5", + "5-17 years": "0.6", + "50-64 years": "3.6", + "65+ years": "17.9" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "6.4", + "18-49 years": "1.4", + "5-17 years": "0.7", + "50-64 years": "3.9", + "65+ years": "18.8" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "7.9", + "18-49 years": "1.1", + "5-17 years": "0.5", + "50-64 years": "4.2", + "65+ years": "20.0" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "9.7", + "18-49 years": "1.3", + "5-17 years": "0.6", + "50-64 years": "4.1", + "65+ years": "20.6" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "12.1", + "18-49 years": "1.5", + "5-17 years": "0.7", + "50-64 years": "4.1", + "65+ years": "20.5" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "13.5", + "18-49 years": "1.4", + "5-17 years": "0.6", + "50-64 years": "3.9", + "65+ years": "19.8" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "17.1", + "18-49 years": "1.2", + "5-17 years": "0.8", + "50-64 years": "4.1", + "65+ years": "19.9" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "17.2", + "18-49 years": "1.5", + "5-17 years": "0.7", + "50-64 years": "4.2", + "65+ years": "19.8" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "19.0", + "18-49 years": "1.8", + "5-17 years": "0.7", + "50-64 years": "4.5", + "65+ years": "20.1" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "26.5", + "18-49 years": "2.0", + "5-17 years": "1.6", + "50-64 years": "5.8", + "65+ years": "23.7" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "26.5", + "18-49 years": "1.9", + "5-17 years": "1.8", + "50-64 years": "6.4", + "65+ years": "24.9" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "30.6", + "18-49 years": "2.3", + "5-17 years": "1.9", + "50-64 years": "6.9", + "65+ years": "27.8" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "37.4", + "18-49 years": "3.2", + "5-17 years": "2.0", + "50-64 years": "9.5", + "65+ years": "36.5" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "35.2", + "18-49 years": "3.7", + "5-17 years": "2.7", + "50-64 years": "10.8", + "65+ years": "38.7" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "38.1", + "18-49 years": "4.6", + "5-17 years": "3.6", + "50-64 years": "11.6", + "65+ years": "42.3" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "43.1", + "18-49 years": "5.6", + "5-17 years": "4.8", + "50-64 years": "16.3", + "65+ years": "51.6" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "43.4", + "18-49 years": "7.0", + "5-17 years": "3.9", + "50-64 years": "18.7", + "65+ years": "65.9" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "36.8", + "18-49 years": "5.8", + "5-17 years": "2.9", + "50-64 years": "17.3", + "65+ years": "56.4" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "26.5", + "18-49 years": "5.1", + "5-17 years": "3.1", + "50-64 years": "13.7", + "65+ years": "46.5" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "0-4 years": "18.8", + "18-49 years": "2.7", + "5-17 years": "1.6", + "50-64 years": "8.2", + "65+ years": "28.7" + } + ], + "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": " hospitalizations per 100,000 people", + "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": "0-4 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "5-17 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "18-49 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "50-64 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "65+ years", + "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, + "visualizationType": "Line", + "customColors": [ + "#197F38", + "#FA4E56", + "#A66EFF", + "#B28500", + "#012551", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(Age).json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(Age).json", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographic_value", + "xKey": "week_end", + "valueKeys": [ + "rate_currentweek" + ], + "ignoredKeys": [ + "rate_previousweek", + "geography", + "percent_change_rate" + ] + }, + "validated": "4.24.3", + "filters": [ + { + "values": [ + "Combined", + "COVID-19", + "RSV", + "Influenza" + ], + "filterStyle": "dropdown", + "columnName": "pathogen", + "label": "Respiratory Illness", + "order": "asc", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(Age).json", + "dynamicMarginTop": 0, + "description": "
Data last updated on and presented through . View this dataset on data.cdc.gov.
", + "regions": [ + { + "background": "#777777", + "from": "14", + "to": "2024-01-13", + "fromType": "Previous Days", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-race-ethnicity.json b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-race-ethnicity.json new file mode 100644 index 000000000..27a750e3c --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-race-ethnicity.json @@ -0,0 +1,1194 @@ +{ + "annotations": [], + "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": "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": "50", + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Race and Ethnicity", + "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, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.1", + "AI/AN, NH": "5.6", + "Black, NH": "7.5", + "Hispanic": "4.7", + "White, NH": "7.8" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.1", + "AI/AN, NH": "8.2", + "Black, NH": "9.8", + "Hispanic": "4.8", + "White, NH": "9.0" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.5", + "AI/AN, NH": "10.4", + "Black, NH": "11.2", + "Hispanic": "6.5", + "White, NH": "9.9" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.6", + "AI/AN, NH": "15.2", + "Black, NH": "11.7", + "Hispanic": "7.7", + "White, NH": "10.8" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "6.3", + "AI/AN, NH": "12.0", + "Black, NH": "15.8", + "Hispanic": "10.0", + "White, NH": "11.4" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "6.8", + "AI/AN, NH": "24.6", + "Black, NH": "17.7", + "Hispanic": "12.0", + "White, NH": "13.3" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "8.6", + "AI/AN, NH": "22.8", + "Black, NH": "18.3", + "Hispanic": "14.8", + "White, NH": "15.1" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "9.4", + "AI/AN, NH": "29.2", + "Black, NH": "18.6", + "Hispanic": "15.1", + "White, NH": "15.0" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "10.3", + "AI/AN, NH": "32.9", + "Black, NH": "21.7", + "Hispanic": "17.8", + "White, NH": "18.6" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "12.3", + "AI/AN, NH": "40.9", + "Black, NH": "24.5", + "Hispanic": "21.6", + "White, NH": "22.3" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "11.3", + "AI/AN, NH": "33.0", + "Black, NH": "22.1", + "Hispanic": "20.2", + "White, NH": "19.9" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "10.0", + "AI/AN, NH": "22.5", + "Black, NH": "19.5", + "Hispanic": "15.7", + "White, NH": "19.6" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "8.7", + "AI/AN, NH": "26.0", + "Black, NH": "18.6", + "Hispanic": "13.9", + "White, NH": "18.1" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "9.5", + "AI/AN, NH": "21.2", + "Black, NH": "19.4", + "Hispanic": "13.6", + "White, NH": "19.0" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "8.1", + "AI/AN, NH": "16.9", + "Black, NH": "16.4", + "Hispanic": "10.7", + "White, NH": "15.8" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "5.3", + "AI/AN, NH": "9.7", + "Black, NH": "11.9", + "Hispanic": "8.0", + "White, NH": "11.2" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.0", + "AI/AN, NH": "9.8", + "Black, NH": "10.7", + "Hispanic": "5.7", + "White, NH": "9.2" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.8", + "AI/AN, NH": "6.0", + "Black, NH": "9.9", + "Hispanic": "4.9", + "White, NH": "8.2" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.1", + "AI/AN, NH": "6.0", + "Black, NH": "8.0", + "Hispanic": "5.1", + "White, NH": "7.5" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.8", + "AI/AN, NH": "2.7", + "Black, NH": "8.3", + "Hispanic": "5.0", + "White, NH": "7.9" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.6", + "AI/AN, NH": "7.7", + "Black, NH": "7.7", + "Hispanic": "5.0", + "White, NH": "7.7" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.9", + "AI/AN, NH": "9.2", + "Black, NH": "6.5", + "Hispanic": "4.5", + "White, NH": "7.0" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.9", + "AI/AN, NH": "9.2", + "Black, NH": "6.4", + "Hispanic": "4.2", + "White, NH": "6.5" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.5", + "AI/AN, NH": "12.3", + "Black, NH": "5.5", + "Hispanic": "3.6", + "White, NH": "6.0" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.7", + "AI/AN, NH": "7.6", + "Black, NH": "5.5", + "Hispanic": "3.5", + "White, NH": "5.3" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.1", + "AI/AN, NH": "15.8", + "Black, NH": "5.0", + "Hispanic": "3.3", + "White, NH": "5.2" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.6", + "AI/AN, NH": "13.6", + "Black, NH": "3.9", + "Hispanic": "2.9", + "White, NH": "4.6" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.1", + "AI/AN, NH": "5.5", + "Black, NH": "3.0", + "Hispanic": "2.8", + "White, NH": "4.2" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.0", + "AI/AN, NH": "12.3", + "Black, NH": "3.8", + "Hispanic": "2.7", + "White, NH": "3.7" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.2", + "AI/AN, NH": "8.1", + "Black, NH": "3.0", + "Hispanic": "2.4", + "White, NH": "3.5" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.1", + "AI/AN, NH": "5.5", + "Black, NH": "2.8", + "Hispanic": "2.0", + "White, NH": "2.7" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.6", + "AI/AN, NH": "7.6", + "Black, NH": "2.3", + "Hispanic": "1.8", + "White, NH": "2.8" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.8", + "AI/AN, NH": "4.3", + "Black, NH": "2.0", + "Hispanic": "1.3", + "White, NH": "2.6" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.9", + "AI/AN, NH": "2.7", + "Black, NH": "1.8", + "Hispanic": "1.8", + "White, NH": "2.2" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.7", + "AI/AN, NH": "3.8", + "Black, NH": "1.8", + "Hispanic": "1.5", + "White, NH": "2.0" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.5", + "AI/AN, NH": "3.2", + "Black, NH": "1.4", + "Hispanic": "1.2", + "White, NH": "1.7" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.9", + "AI/AN, NH": "1.1", + "Black, NH": "1.6", + "Hispanic": "1.0", + "White, NH": "1.3" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.5", + "AI/AN, NH": "2.7", + "Black, NH": "1.5", + "Hispanic": "0.9", + "White, NH": "1.4" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.7", + "AI/AN, NH": "1.6", + "Black, NH": "1.3", + "Hispanic": "1.0", + "White, NH": "1.4" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.3", + "AI/AN, NH": "0.5", + "Black, NH": "1.7", + "Hispanic": "0.9", + "White, NH": "1.4" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.5", + "AI/AN, NH": "0.5", + "Black, NH": "1.5", + "Hispanic": "0.8", + "White, NH": "1.4" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.5", + "AI/AN, NH": "3.2", + "Black, NH": "1.7", + "Hispanic": "1.5", + "White, NH": "1.4" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "1.6", + "AI/AN, NH": "1.6", + "Black, NH": "2.2", + "Hispanic": "1.3", + "White, NH": "1.6" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.3", + "AI/AN, NH": "3.8", + "Black, NH": "2.9", + "Hispanic": "1.4", + "White, NH": "2.3" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.1", + "AI/AN, NH": "2.2", + "Black, NH": "3.0", + "Hispanic": "1.8", + "White, NH": "2.5" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.4", + "AI/AN, NH": "4.1", + "Black, NH": "4.0", + "Hispanic": "2.5", + "White, NH": "2.8" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.9", + "AI/AN, NH": "5.4", + "Black, NH": "4.1", + "Hispanic": "2.3", + "White, NH": "3.5" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.7", + "AI/AN, NH": "3.8", + "Black, NH": "5.7", + "Hispanic": "3.1", + "White, NH": "4.0" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.1", + "AI/AN, NH": "3.2", + "Black, NH": "5.7", + "Hispanic": "3.0", + "White, NH": "4.4" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.5", + "AI/AN, NH": "4.7", + "Black, NH": "5.6", + "Hispanic": "3.6", + "White, NH": "4.8" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.0", + "AI/AN, NH": "4.4", + "Black, NH": "5.7", + "Hispanic": "3.4", + "White, NH": "5.0" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.1", + "AI/AN, NH": "8.7", + "Black, NH": "5.9", + "Hispanic": "2.7", + "White, NH": "5.4" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.2", + "AI/AN, NH": "7.9", + "Black, NH": "5.6", + "Hispanic": "3.8", + "White, NH": "5.8" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.0", + "AI/AN, NH": "7.0", + "Black, NH": "5.9", + "Hispanic": "3.6", + "White, NH": "6.0" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "2.8", + "AI/AN, NH": "10.3", + "Black, NH": "5.6", + "Hispanic": "3.8", + "White, NH": "5.9" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.0", + "AI/AN, NH": "8.2", + "Black, NH": "5.9", + "Hispanic": "4.8", + "White, NH": "5.9" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.0", + "AI/AN, NH": "9.7", + "Black, NH": "6.1", + "Hispanic": "5.3", + "White, NH": "6.1" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.1", + "AI/AN, NH": "14.1", + "Black, NH": "6.8", + "Hispanic": "5.1", + "White, NH": "6.1" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.3", + "AI/AN, NH": "9.0", + "Black, NH": "8.9", + "Hispanic": "6.7", + "White, NH": "7.3" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.8", + "AI/AN, NH": "10.8", + "Black, NH": "9.3", + "Hispanic": "6.8", + "White, NH": "7.6" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "4.5", + "AI/AN, NH": "13.1", + "Black, NH": "10.7", + "Hispanic": "7.2", + "White, NH": "8.7" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "7.2", + "AI/AN, NH": "18.4", + "Black, NH": "13.4", + "Hispanic": "8.4", + "White, NH": "11.2" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "7.3", + "AI/AN, NH": "15.9", + "Black, NH": "16.4", + "Hispanic": "8.0", + "White, NH": "12.0" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "7.5", + "AI/AN, NH": "19.4", + "Black, NH": "18.2", + "Hispanic": "11.1", + "White, NH": "13.5" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "9.1", + "AI/AN, NH": "20.8", + "Black, NH": "23.4", + "Hispanic": "12.2", + "White, NH": "16.3" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "9.9", + "AI/AN, NH": "23.5", + "Black, NH": "27.5", + "Hispanic": "15.2", + "White, NH": "20.0" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "8.9", + "AI/AN, NH": "16.5", + "Black, NH": "22.8", + "Hispanic": "13.6", + "White, NH": "17.6" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "8.8", + "AI/AN, NH": "15.7", + "Black, NH": "19.4", + "Hispanic": "10.4", + "White, NH": "14.6" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "6.3", + "AI/AN, NH": "14.9", + "Black, NH": "15.3", + "Hispanic": "7.6", + "White, NH": "11.0" + }, + { + "week_end": "2024-01-27", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Asian, PI, NH": "3.6", + "AI/AN, NH": "4.9", + "Black, NH": "8.8", + "Hispanic": "5.1", + "White, NH": "6.8" + } + ], + "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": " hospitalizations per 100,000 people", + "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": "AI/AN, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Asian, PI, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Black, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Hispanic", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "White, NH", + "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", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(RaceEth).json", + "customColors": [ + "#197F38", + "#FA4E56", + "#A66EFF", + "#B28500", + "#012551", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(RaceEth).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographic_value", + "xKey": "week_end", + "valueKeys": [ + "rate_currentweek" + ], + "ignoredKeys": [ + "geography", + "percent_change_rate", + "rate_previousweek" + ] + }, + "validated": "4.24.3", + "filters": [ + { + "values": [ + "Combined", + "COVID-19", + "RSV", + "Influenza" + ], + "filterStyle": "dropdown", + "columnName": "pathogen", + "label": "Respiratory Illness", + "order": "asc", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(RaceEth).json", + "dynamicMarginTop": 0, + "description": "
NH = non-Hispanic, AI/AN = American Indian/Alaska Native, PI = Pacific Islander

Data last updated on and presented through . View this dataset on data.cdc.gov.
", + "regions": [ + { + "background": "#777777", + "from": "14", + "to": "2024-01-13", + "fromType": "Previous Days", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-sex.json b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-sex.json new file mode 100644 index 000000000..be3220dd1 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Hospitalization-sex.json @@ -0,0 +1,896 @@ +{ + "annotations": [], + "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": "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": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Sex", + "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, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "7.2", + "Male": "7.1" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "8.1", + "Male": "8.0" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "9.5", + "Male": "9.1" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "10.2", + "Male": "10.0" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "12.0", + "Male": "11.2" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "14.2", + "Male": "13.2" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "15.6", + "Male": "15.1" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "15.8", + "Male": "15.6" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "19.4", + "Male": "18.1" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "23.1", + "Male": "21.3" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "21.0", + "Male": "19.2" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "19.5", + "Male": "17.4" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "17.5", + "Male": "16.6" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "18.4", + "Male": "17.1" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "15.0", + "Male": "14.4" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "11.1", + "Male": "9.8" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "8.7", + "Male": "8.4" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "8.0", + "Male": "7.6" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "7.4", + "Male": "6.7" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "7.2", + "Male": "7.3" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "7.0", + "Male": "7.1" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "6.4", + "Male": "6.4" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "6.2", + "Male": "5.8" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.4", + "Male": "5.3" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.1", + "Male": "4.7" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "4.9", + "Male": "4.7" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "4.0", + "Male": "4.1" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "3.9", + "Male": "3.4" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "3.7", + "Male": "3.3" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "3.2", + "Male": "3.1" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "2.6", + "Male": "2.7" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "2.6", + "Male": "2.4" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "2.3", + "Male": "2.2" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "2.1", + "Male": "2.0" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "2.0", + "Male": "1.8" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.7", + "Male": "1.4" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.4", + "Male": "1.4" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.3", + "Male": "1.6" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.5", + "Male": "1.3" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.6", + "Male": "1.3" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.4", + "Male": "1.3" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.4", + "Male": "1.6" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "1.8", + "Male": "1.8" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "2.3", + "Male": "2.4" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "2.6", + "Male": "2.5" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "3.1", + "Male": "2.9" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "3.5", + "Male": "3.4" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "4.2", + "Male": "4.0" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "4.5", + "Male": "4.1" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "4.4", + "Male": "4.9" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "4.7", + "Male": "4.8" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.0", + "Male": "4.9" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.3", + "Male": "5.2" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.4", + "Male": "5.4" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.4", + "Male": "5.4" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.4", + "Male": "5.7" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "5.6", + "Male": "5.7" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "6.1", + "Male": "6.0" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "7.5", + "Male": "7.4" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "8.3", + "Male": "7.3" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "8.7", + "Male": "8.8" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "11.6", + "Male": "11.0" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "12.6", + "Male": "11.7" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "14.4", + "Male": "12.9" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "17.2", + "Male": "16.6" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "21.0", + "Male": "19.6" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "18.2", + "Male": "16.9" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "14.4", + "Male": "15.1" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "11.5", + "Male": "11.5" + }, + { + "week_end": "2024-01-27", + "**Numeric Value Property**": "", + "pathogen": "", + "Female": "8.0", + "Male": "7.8" + } + ], + "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": " hospitalizations per 100,000 people", + "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": "Female", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Male", + "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, + "visualizationType": "Line", + "customColors": [ + "#1192E9", + "#012551", + "#f4802a", + "#072768", + "#0A6C75", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(Sex).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographic_value", + "xKey": "week_end", + "valueKeys": [ + "rate_currentweek" + ], + "ignoredKeys": [ + "percent_change_rate", + "rate_previousweek", + "demographic_type", + "geography" + ] + }, + "validated": "4.24.3", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "Combined", + "COVID-19", + "Influenza", + "RSV" + ], + "filterStyle": "dropdown", + "order": "asc", + "columnName": "pathogen", + "label": "Respiratory Illness", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(Sex).json", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RESPNETHospitalizationbyDemographics(Sex).json", + "description": "
Data last updated on and presented through . View this dataset on data.cdc.gov.
", + "regions": [ + { + "background": "#777777", + "from": "14", + "to": "2024-01-13", + "fromType": "Previous Days", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-Age.json b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-Age.json new file mode 100644 index 000000000..42c250b6b --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-Age.json @@ -0,0 +1,407 @@ +{ + "annotations": [], + "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": "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": "0", + "max": "6", + "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": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Age", + "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, + "data": [], + "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": " percent of deaths", + "abbreviated": true, + "bottomSuffix": "", + "bottomPrefix": "", + "bottomAbbreviated": false, + "roundTo": "2", + "onlyShowTopPrefixSuffix": true + }, + "confidenceKeys": {}, + "visual": { + "border": true, + "accent": true, + "background": true, + "verticalHoverLine": true, + "horizontalHoverLine": false + }, + "useLogScale": false, + "filterBehavior": "Filter Change", + "highlightedBarValues": [], + "series": [ + { + "dataKey": "0-17 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "18-64 years", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "65+ years", + "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", + "customColors": [ + "#197F38", + "#A66EFF", + "#012551", + "#072768", + "#0A6C75", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(Age).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographic_values", + "xKey": "week_end", + "valueKeys": [ + "percent_deaths_currentweek" + ] + }, + "validated": "4.24.3", + "filters": [ + { + "values": [ + "COVID-19", + "RSV", + "Combined", + "Influenza" + ], + "filterStyle": "dropdown", + "columnName": "pathogen", + "order": "asc", + "label": "Respiratory Illness", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(Age).json", + "dynamicMarginTop": 0, + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(Age).json", + "description": "

One or more data points are based on death counts between 1-9 and have been suppressed in accordance with National Center for Health Statistics confidentiality standards.


Data last updated on and presented through . View this dataset on data.cdc.gov.

\n", + "footnotes": "", + "regions": [ + { + "background": "#777777", + "from": "21", + "to": "2024-01-06", + "fromType": "Previous Days", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-race-ethnicity-v2.json b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-race-ethnicity-v2.json new file mode 100644 index 000000000..1aa5ceb71 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-race-ethnicity-v2.json @@ -0,0 +1,1222 @@ +{ + "annotations": [], + "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": "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": "0", + "max": "6", + "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": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Race and Ethnicity", + "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, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.8", + "Black, NH": "3.0", + "White, NH": "4.4", + "Multiple/Other, NH": "3.2", + "Asian/PI, NH": "3.2", + "Hispanic": "3.3" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.7", + "Black, NH": "2.9", + "White, NH": "4.0", + "Asian/PI, NH": "3.3", + "Hispanic": "2.9" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.2", + "Black, NH": "2.6", + "White, NH": "4.0", + "Asian/PI, NH": "4.3", + "Hispanic": "2.9" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.7", + "Black, NH": "2.7", + "White, NH": "4.1", + "Multiple/Other, NH": "3.1", + "Asian/PI, NH": "2.9", + "Hispanic": "2.9" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.2", + "Black, NH": "2.6", + "White, NH": "4.2", + "Multiple/Other, NH": "4.1", + "Asian/PI, NH": "3.6", + "Hispanic": "3.0" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.6", + "Black, NH": "2.9", + "White, NH": "4.2", + "Multiple/Other, NH": "3.6", + "Asian/PI, NH": "4.1", + "Hispanic": "3.0" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.8", + "Black, NH": "3.0", + "White, NH": "4.3", + "Asian/PI, NH": "4.4", + "Hispanic": "3.4" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.5", + "Black, NH": "3.1", + "White, NH": "4.4", + "Asian/PI, NH": "4.3", + "Hispanic": "3.4" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.9", + "Black, NH": "3.1", + "White, NH": "4.8", + "Multiple/Other, NH": "4.4", + "Asian/PI, NH": "5.4", + "Hispanic": "4.3" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "6.1", + "Black, NH": "4.1", + "White, NH": "5.4", + "Multiple/Other, NH": "5.1", + "Asian/PI, NH": "5.5", + "Hispanic": "5.4" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "6.6", + "Black, NH": "4.3", + "White, NH": "6.4", + "Multiple/Other, NH": "3.2", + "Asian/PI, NH": "6.7", + "Hispanic": "5.9" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "7.0", + "Black, NH": "4.5", + "White, NH": "6.6", + "Multiple/Other, NH": "5.9", + "Asian/PI, NH": "7.3", + "Hispanic": "6.3" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.7", + "Black, NH": "4.6", + "White, NH": "6.5", + "Multiple/Other, NH": "4.6", + "Asian/PI, NH": "7.8", + "Hispanic": "6.6" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.3", + "Black, NH": "4.1", + "White, NH": "7.0", + "Multiple/Other, NH": "7.8", + "Asian/PI, NH": "7.8", + "Hispanic": "6.4" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.5", + "Black, NH": "5.4", + "White, NH": "7.2", + "Multiple/Other, NH": "4.6", + "Asian/PI, NH": "7.6", + "Hispanic": "6.3" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.8", + "Black, NH": "4.8", + "White, NH": "6.8", + "Multiple/Other, NH": "5.6", + "Asian/PI, NH": "7.8", + "Hispanic": "6.3" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.5", + "Black, NH": "4.6", + "White, NH": "6.0", + "Multiple/Other, NH": "3.5", + "Asian/PI, NH": "5.6", + "Hispanic": "5.0" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.7", + "Black, NH": "4.2", + "White, NH": "5.4", + "Multiple/Other, NH": "4.5", + "Asian/PI, NH": "5.3", + "Hispanic": "4.3" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.3", + "Black, NH": "3.3", + "White, NH": "4.8", + "Asian/PI, NH": "4.6", + "Hispanic": "3.4" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.4", + "Black, NH": "3.4", + "White, NH": "4.1", + "Multiple/Other, NH": "2.9", + "Asian/PI, NH": "3.9", + "Hispanic": "3.5" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.4", + "Black, NH": "3.1", + "White, NH": "3.7", + "Multiple/Other, NH": "3.5", + "Asian/PI, NH": "4.0", + "Hispanic": "3.3" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.4", + "Black, NH": "2.9", + "White, NH": "3.8", + "Asian/PI, NH": "4.2", + "Hispanic": "2.8" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.7", + "Black, NH": "2.4", + "White, NH": "3.6", + "Multiple/Other, NH": "4.3", + "Asian/PI, NH": "3.0", + "Hispanic": "2.6" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.5", + "Black, NH": "2.2", + "White, NH": "3.4", + "Asian/PI, NH": "3.7", + "Hispanic": "2.6" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.8", + "White, NH": "3.2", + "Asian/PI, NH": "3.3", + "Hispanic": "2.8" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.9", + "Black, NH": "2.0", + "White, NH": "3.1", + "Asian/PI, NH": "2.7", + "Hispanic": "2.4" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.5", + "Black, NH": "1.5", + "White, NH": "2.7", + "Asian/PI, NH": "2.8", + "Hispanic": "1.8" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.5", + "Black, NH": "2.0", + "White, NH": "2.6", + "Asian/PI, NH": "1.7", + "Hispanic": "1.8" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.4", + "Black, NH": "1.1", + "White, NH": "2.3", + "Asian/PI, NH": "2.7", + "Hispanic": "2.0" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.4", + "White, NH": "2.2", + "Asian/PI, NH": "2.6", + "Hispanic": "2.1" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.9", + "Black, NH": "1.3", + "White, NH": "2.0", + "Asian/PI, NH": "2.1", + "Hispanic": "1.4" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.1", + "Black, NH": "1.1", + "White, NH": "1.8", + "Asian/PI, NH": "1.9", + "Hispanic": "1.5" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.2", + "White, NH": "1.6", + "Asian/PI, NH": "1.8", + "Hispanic": "1.4" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.0", + "White, NH": "1.5", + "Asian/PI, NH": "1.7", + "Hispanic": "1.4" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.0", + "White, NH": "1.4", + "Asian/PI, NH": "2.1", + "Hispanic": "1.7" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.8", + "White, NH": "1.4", + "Asian/PI, NH": "1.4", + "Hispanic": "1.2" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.9", + "White, NH": "1.3", + "Asian/PI, NH": "1.2", + "Hispanic": "1.1" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.8", + "White, NH": "1.2", + "Asian/PI, NH": "1.4", + "Hispanic": "1.3" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.8", + "White, NH": "1.1", + "Asian/PI, NH": "2.0", + "Hispanic": "1.3" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.8", + "White, NH": "1.0", + "Asian/PI, NH": "1.9", + "Hispanic": "1.1" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.7", + "White, NH": "0.9", + "Asian/PI, NH": "1.5", + "Hispanic": "1.1" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.7", + "White, NH": "1.0", + "Asian/PI, NH": "1.6", + "Hispanic": "1.2" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.0", + "White, NH": "1.0", + "Asian/PI, NH": "1.3", + "Hispanic": "1.0" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.8", + "White, NH": "1.0", + "Multiple/Other, NH": "0.0", + "Asian/PI, NH": "1.4", + "Hispanic": "1.1" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.8", + "White, NH": "1.3", + "Asian/PI, NH": "2.2", + "Hispanic": "1.3" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "0.9", + "White, NH": "1.5", + "Asian/PI, NH": "1.4", + "Hispanic": "1.2" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.4", + "White, NH": "1.7", + "Multiple/Other, NH": "2.8", + "Asian/PI, NH": "1.9", + "Hispanic": "1.6" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.3", + "White, NH": "2.0", + "Asian/PI, NH": "2.5", + "Hispanic": "2.2" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.8", + "White, NH": "2.2", + "Asian/PI, NH": "2.8", + "Hispanic": "2.1" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.9", + "White, NH": "2.4", + "Asian/PI, NH": "2.5", + "Hispanic": "2.5" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "2.0", + "White, NH": "2.7", + "Asian/PI, NH": "2.7", + "Hispanic": "2.1" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.9", + "White, NH": "2.7", + "Asian/PI, NH": "2.8", + "Hispanic": "2.3" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.6", + "Black, NH": "1.8", + "White, NH": "2.8", + "Asian/PI, NH": "3.5", + "Hispanic": "1.9" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.8", + "Black, NH": "1.8", + "White, NH": "2.7", + "Asian/PI, NH": "2.4", + "Hispanic": "1.8" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.6", + "White, NH": "2.5", + "Asian/PI, NH": "2.5", + "Hispanic": "1.9" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.7", + "White, NH": "2.7", + "Asian/PI, NH": "2.4", + "Hispanic": "1.8" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.0", + "Black, NH": "1.7", + "White, NH": "2.4", + "Asian/PI, NH": "2.5", + "Hispanic": "2.0" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.2", + "Black, NH": "1.5", + "White, NH": "2.4", + "Asian/PI, NH": "1.4", + "Hispanic": "1.7" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.4", + "Black, NH": "1.5", + "White, NH": "2.7", + "Asian/PI, NH": "2.6", + "Hispanic": "1.5" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.4", + "Black, NH": "1.6", + "White, NH": "2.8", + "Asian/PI, NH": "2.0", + "Hispanic": "2.0" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "1.7", + "White, NH": "2.8", + "Asian/PI, NH": "2.4", + "Hispanic": "1.9" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "2.1", + "White, NH": "3.3", + "Asian/PI, NH": "2.7", + "Hispanic": "2.8" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.8", + "Black, NH": "1.9", + "White, NH": "3.5", + "Asian/PI, NH": "3.0", + "Hispanic": "2.4" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "2.7", + "Black, NH": "2.5", + "White, NH": "3.7", + "Multiple/Other, NH": "3.8", + "Asian/PI, NH": "3.1", + "Hispanic": "2.6" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.4", + "Black, NH": "2.7", + "White, NH": "3.9", + "Asian/PI, NH": "4.1", + "Hispanic": "3.2" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.5", + "Black, NH": "3.0", + "White, NH": "4.8", + "Asian/PI, NH": "4.0", + "Hispanic": "3.8" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.9", + "Black, NH": "3.6", + "White, NH": "5.3", + "Multiple/Other, NH": "4.3", + "Asian/PI, NH": "4.7", + "Hispanic": "4.7" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "5.1", + "Black, NH": "3.8", + "White, NH": "5.4", + "Multiple/Other, NH": "5.8", + "Asian/PI, NH": "5.0", + "Hispanic": "4.3" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.3", + "Black, NH": "4.0", + "White, NH": "4.8", + "Asian/PI, NH": "4.6", + "Hispanic": "4.1" + }, + { + "week_end": "2024-01-27", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "3.1", + "White, NH": "4.3", + "Asian/PI, NH": "5.0", + "Hispanic": "4.0" + }, + { + "week_end": "2024-02-03", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "3.7", + "Black, NH": "2.8", + "White, NH": "3.8", + "Asian/PI, NH": "4.5", + "Hispanic": "3.2" + }, + { + "week_end": "2024-02-10", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "AI/AN, NH": "4.7", + "Black, NH": "2.6", + "White, NH": "3.6", + "Asian/PI, NH": "3.9", + "Hispanic": "2.8" + }, + { + "week_end": "2024-02-17", + "**Numeric Value Property**": "", + "pathogen": "", + "demographic_type": "", + "Black, NH": "3.1", + "White, NH": "3.0", + "Asian/PI, NH": "3.7", + "Hispanic": "3.5" + } + ], + "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": " percent of deaths", + "abbreviated": true, + "bottomSuffix": "", + "bottomPrefix": "", + "bottomAbbreviated": false, + "roundTo": "2", + "onlyShowTopPrefixSuffix": true + }, + "confidenceKeys": {}, + "visual": { + "border": true, + "accent": true, + "background": true, + "verticalHoverLine": true, + "horizontalHoverLine": false + }, + "useLogScale": false, + "filterBehavior": "Filter Change", + "highlightedBarValues": [], + "series": [ + { + "dataKey": "AI/AN, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Asian/NHOPI, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Black, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Hispanic", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Multiple/Other, NH", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "White, NH", + "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, + "visualizationType": "Line", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(RaceEth).json", + "customColors": [ + "#197F38", + "#FA4E56", + "#A66EFF", + "#B28500", + "#1192E9", + "#012551", + "#00a089", + "#B28500", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(RaceEth).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "xKey": "week_end", + "valueKeys": [ + "percent_deaths_currentweek" + ], + "seriesKey": "demographic_values", + "ignoredKeys": [] + }, + "validated": "4.24.3", + "dynamicMarginTop": 0, + "description": "
NH = non-Hispanic, AI/AN = American Indian/Alaska Native, NHOPI = Native Hawaiian, and Other Pacific Islander

One or more data points are based on death counts between 1-9 and have been suppressed in accordance with National Center for Health Statistics confidentiality standards.

Data last updated on and presented through . View this dataset on data.cdc.gov.
", + "filters": [ + { + "values": [ + "COVID-19", + "RSV", + "Influenza", + "Combined" + ], + "filterStyle": "dropdown", + "order": "asc", + "columnName": "pathogen", + "label": "Respiratory Illness", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(RaceEth).json", + "regions": [ + { + "background": "#777777", + "from": "21", + "to": "2024-01-06", + "fromType": "Previous Days", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-sex.json b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-sex.json new file mode 100644 index 000000000..202b72b32 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/Viral-Respiratory-Deaths-sex.json @@ -0,0 +1,400 @@ +{ + "annotations": [], + "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": "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": "0", + "max": "6", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": 0, + "rightLabel": "", + "rightLabelOffsetSize": 0, + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "5", + "axisPadding": 0, + "scalePadding": "50", + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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": "Sex", + "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, + "data": [], + "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": " percent of deaths", + "abbreviated": true, + "bottomSuffix": "", + "bottomPrefix": "", + "bottomAbbreviated": false, + "roundTo": "2", + "onlyShowTopPrefixSuffix": true + }, + "confidenceKeys": {}, + "visual": { + "border": true, + "accent": true, + "background": true, + "verticalHoverLine": true, + "horizontalHoverLine": false + }, + "useLogScale": false, + "filterBehavior": "Filter Change", + "highlightedBarValues": [], + "series": [ + { + "dataKey": "Female", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Male", + "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", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(Sex).json", + "customColors": [ + "#1192E9", + "#012551", + "#f4802a", + "#072768", + "#0A6C75", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(Sex).json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographic_values", + "xKey": "week_end", + "valueKeys": [ + "percent_deaths_currentweek" + ] + }, + "validated": "4.24.3", + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "Combined", + "RSV" + ], + "filterStyle": "dropdown", + "columnName": "pathogen", + "label": "Respiratory Illness", + "order": "asc", + "active": "Combined" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RVRMortalityWithDemographic(Sex).json", + "dynamicMarginTop": 0, + "description": "
One or more data points are based on death counts between 1-9 and have been suppressed in accordance with National Center for Health Statistics confidentiality standards.

Data last updated on and presented through . View this dataset on data.cdc.gov.
", + "regions": [ + { + "background": "#777777", + "from": "21", + "to": "2024-01-06", + "fromType": "Previous Days", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-intent-viz.json b/packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-intent-viz.json new file mode 100644 index 000000000..faf715bf8 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-intent-viz.json @@ -0,0 +1,419 @@ +{ + "annotations": [], + "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": "stacked", + "barStyle": "", + "roundingStyle": "standard", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": true + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "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": "4", + "axisPadding": 0, + "scalePadding": "10", + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "maxValue": 110.00000000000001, + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "topAxis": { + "hasLine": false + }, + "isLegendValue": false, + "barThickness": "0.8", + "barHeight": 25, + "barSpace": 15, + "heights": { + "vertical": "250", + "horizontal": 750, + "mobileVertical": "150" + }, + "xAxis": { + "sortDates": false, + "anchors": [], + "type": "date", + "showTargetLabel": true, + "targetLabel": "Target", + "hideAxis": false, + "hideLabel": false, + "hideTicks": false, + "size": "", + "tickRotation": 0, + "min": "", + "max": "", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "numTicks": "6", + "labelOffset": "", + "axisPadding": 200, + "target": 0, + "maxTickRotation": "45", + "padding": 6, + "showYearsOnce": false, + "sortByRecentDate": false, + "dataKey": "week_end", + "axisBBox": 38.27333068847656, + "tickWidthMax": 108, + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %-d %Y", + "viewportNumTicks": { + "xxs": "3", + "xs": "4", + "sm": "4" + }, + "manual": false, + "manualStep": "2", + "viewportStepCount": { + "sm": "2", + "xs": "4", + "xxs": "4" + } + }, + "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": "", + "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 + }, + "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", + "onlyShowTopPrefixSuffix": true + }, + "confidenceKeys": {}, + "visual": { + "border": true, + "accent": true, + "background": true, + "verticalHoverLine": false, + "horizontalHoverLine": false + }, + "useLogScale": false, + "filterBehavior": "Filter Change", + "highlightedBarValues": [], + "series": [ + { + "dataKey": "Received vaccine", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Definitely will get a vaccine", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Probably will get a vaccine or are unsure", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Probably or definitely will not get a vaccine", + "type": "Bar", + "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": "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": [] + }, + "visualizationType": "Bar", + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "vaccination_intent_category", + "xKey": "week_end", + "valueKeysTallSupport": [ + "value" + ], + "ignoredKeys": [ + "suppression_flag", + "95_confidence_interval_lower", + "95_confidence_interval_upper", + "95_confidence_internal_range" + ] + }, + "version": "4.24.10", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "Influenza", + "RSV", + "COVID-19" + ], + "filterStyle": "dropdown", + "id": 1726690583795, + "columnName": "pathogen", + "showDropdown": false, + "active": "COVID-19" + }, + { + "values": [ + "Adults", + "Children" + ], + "filterStyle": "dropdown", + "id": 1729257824077, + "active": "Adults", + "columnName": "demographic_group" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "customColors": [ + "#012551", + "#1192E9", + "#002D9D", + "#A66EFF", + "#0A6C75", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD" + ], + "description": "

95% confidence intervals for the point estimates are presented at the data.cdc.gov link below.

Data last updated on and presented through . View this dataset on data.CDC.gov.

" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-trends-viz.json b/packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-trends-viz.json new file mode 100644 index 000000000..59635b93f --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/covid-vaccination-trends-viz.json @@ -0,0 +1,394 @@ +{ + "annotations": [], + "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": "flat", + "roundingStyle": "standard", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": true, + "showAnnotationDropdown": false + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "size": "30", + "gridLines": true, + "enablePadding": true, + "min": "0", + "max": "99", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": 0, + "rightLabel": "", + "rightLabelOffsetSize": 0, + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "5", + "axisPadding": 0, + "scalePadding": 10, + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "", + "maxValue": 108.9 + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "4", + "labelOffset": 0, + "axisPadding": 200, + "target": 0, + "maxTickRotation": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %-d %Y", + "axisBBox": 24.273334503173828, + "tickWidthMax": 94, + "viewportNumTicks": { + "xxs": "4" + }, + "manual": false + }, + "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": "", + "lineMode": false, + "verticalSorted": false, + "highlightOnHover": false, + "hideSuppressedLabels": false, + "hideSuppressionLink": false, + "seriesHighlight": [], + "style": "lines", + "subStyle": "linear blocks", + "tickRotation": "", + "hideBorder": { + "side": false, + "topBottom": true + }, + "position": "bottom" + }, + "brush": { + "height": 25, + "active": false + }, + "exclusions": { + "active": false, + "keys": [] + }, + "palette": "qualitative-bold", + "isPaletteReversed": false, + "twoColor": { + "palette": "monochrome-1", + "isPaletteReversed": false + }, + "labels": false, + "dataFormat": { + "commas": true, + "prefix": "", + "suffix": " percent vaccinated", + "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": "Adults", + "type": "Line", + "axis": "Left", + "tooltip": true, + "name": "Adults (18+)" + }, + { + "dataKey": "Children", + "type": "dashed-md", + "axis": "Left", + "tooltip": true, + "name": "Children (under 18)" + } + ], + "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": "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": [] + }, + "visualizationType": "Line", + "customColors": [ + "#f06f19", + "#f06f19", + "#f06f19", + "#000000", + "#0A6C75", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "xKey": "week_end", + "valueKeysTallSupport": [ + "value" + ], + "ignoredKeys": [ + "suppression_flag", + "95_confidence_interval_lower", + "95_confidence_interval_upper", + "95_confidence_internal_range" + ], + "seriesKey": "demographic_group" + }, + "version": "4.24.10", + "description": "

95% confidence intervals for the point estimates are presented at the data.cdc.gov link below.

Data last updated on and presented through . View this dataset on data.CDC.gov.

", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "RSV" + ], + "filterStyle": "dropdown", + "id": 1726688167656, + "columnName": "pathogen", + "showDropdown": false, + "active": "COVID-19" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "showLineSeriesLabels": false, + "colorMatchLineSeriesLabels": false +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-intent-viz.json b/packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-intent-viz.json new file mode 100644 index 000000000..f00f898b1 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-intent-viz.json @@ -0,0 +1,420 @@ +{ + "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": "stacked", + "barStyle": "", + "roundingStyle": "standard", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": true + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "size": "55", + "gridLines": true, + "enablePadding": false, + "min": "", + "max": "", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": 0, + "rightLabel": "", + "rightLabelOffsetSize": 0, + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "4", + "axisPadding": 0, + "scalePadding": 10, + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "maxValue": 100.10000000000001, + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "topAxis": { + "hasLine": false + }, + "isLegendValue": false, + "barThickness": "0.8", + "barHeight": 25, + "barSpace": 15, + "heights": { + "vertical": "250", + "horizontal": 750, + "mobileVertical": "150" + }, + "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": "6", + "labelOffset": 0, + "axisPadding": 200, + "target": 0, + "maxTickRotation": "45", + "padding": 6, + "showYearsOnce": false, + "sortByRecentDate": false, + "dataKey": "week_end", + "axisBBox": 38.27333068847656, + "tickWidthMax": 108, + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %-d %Y", + "manual": false, + "manualStep": "2", + "viewportStepCount": { + "sm": "2", + "xs": "4", + "xxs": "4" + }, + "viewportNumTicks": { + "sm": "4", + "xs": "4", + "xxs": "3" + } + }, + "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": "", + "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 + }, + "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", + "onlyShowTopPrefixSuffix": true + }, + "confidenceKeys": {}, + "visual": { + "border": true, + "accent": true, + "background": true, + "verticalHoverLine": false, + "horizontalHoverLine": false + }, + "useLogScale": false, + "filterBehavior": "Filter Change", + "highlightedBarValues": [], + "series": [ + { + "dataKey": "Received vaccine", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Definitely will get a vaccine", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Probably will get a vaccine or are unsure", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Probably or definitely will not get a vaccine", + "type": "Bar", + "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": "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": [] + }, + "visualizationType": "Bar", + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "vaccination_intent_category", + "xKey": "week_end", + "valueKeysTallSupport": [ + "value" + ], + "ignoredKeys": [ + "95_confidence_internal_range", + "95_confidence_interval_upper", + "95_confidence_interval_lower", + "suppression_flag" + ] + }, + "version": "4.24.10", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "RSV" + ], + "filterStyle": "dropdown", + "id": 1726689614021, + "columnName": "pathogen", + "showDropdown": false, + "active": "Influenza", + "setByQueryParameter": "Influenza" + }, + { + "values": [ + "Adults", + "Children" + ], + "filterStyle": "dropdown", + "id": 1729201744650, + "active": "Adults", + "columnName": "demographic_group" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "customColors": [ + "#012551", + "#1192E9", + "#002D9D", + "#A66EFF", + "#0A6C75", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD" + ], + "description": "

95% confidence intervals for the point estimates are presented at the data.cdc.gov link below.

Data last updated on and presented through . View this dataset on data.CDC.gov.

" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-trends-viz.json b/packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-trends-viz.json new file mode 100644 index 000000000..f9c1f3ecd --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/flu-vaccination-trends-viz.json @@ -0,0 +1,394 @@ +{ + "annotations": [], + "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": "flat", + "roundingStyle": "standard", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": true + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "size": "30", + "gridLines": true, + "enablePadding": true, + "min": "0", + "max": "100", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": 0, + "rightLabel": "", + "rightLabelOffsetSize": 0, + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "5", + "axisPadding": 0, + "scalePadding": 10, + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "", + "maxValue": 24.310000000000002 + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": 200, + "target": 0, + "maxTickRotation": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "axisBBox": 24.273334503173828, + "tickWidthMax": 98, + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %-d %Y", + "viewportNumTicks": { + "xxs": "4" + }, + "manual": false + }, + "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, + "collapsible": 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": "", + "lineMode": false, + "verticalSorted": false, + "highlightOnHover": false, + "hideSuppressedLabels": false, + "hideSuppressionLink": false, + "seriesHighlight": [], + "style": "lines", + "subStyle": "linear blocks", + "tickRotation": "", + "hideBorder": { + "side": false, + "topBottom": true + }, + "position": "bottom" + }, + "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": " percent vaccinated", + "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": "Adults", + "type": "Line", + "axis": "Left", + "tooltip": true, + "name": "Adults (18+)" + }, + { + "dataKey": "Children", + "type": "dashed-md", + "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": "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": [] + }, + "visualizationType": "Line", + "customColors": [ + "#0a58d6", + "#0a58d6", + "#0a58d6", + "#000000", + "#0A6C75", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "demographic_group", + "xKey": "week_end", + "valueKeysTallSupport": [ + "value" + ], + "ignoredKeys": [ + "suppression_flag", + "95_confidence_interval_lower", + "95_confidence_interval_upper", + "95_confidence_internal_range" + ] + }, + "version": "4.24.10", + "description": "

95% confidence intervals for the point estimates are presented at the data.cdc.gov link below.

Data last updated on and presented through . View this dataset on data.CDC.gov.

", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "RSV" + ], + "filterStyle": "dropdown", + "id": 1726689170298, + "columnName": "pathogen", + "showDropdown": false, + "active": "Influenza", + "setByQueryParameter": "Influenza" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "showLineSeriesLabels": false, + "dynamicSeries": false +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-intent-viz.json b/packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-intent-viz.json new file mode 100644 index 000000000..e3100ec90 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-intent-viz.json @@ -0,0 +1,409 @@ +{ + "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": "stacked", + "barStyle": "", + "roundingStyle": "standard", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": true + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "size": "55", + "gridLines": true, + "enablePadding": false, + "min": "", + "max": "", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": 0, + "rightLabel": "", + "rightLabelOffsetSize": 0, + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "4", + "axisPadding": 0, + "scalePadding": 10, + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "", + "maxValue": 100.10000000000001 + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "topAxis": { + "hasLine": false + }, + "isLegendValue": false, + "barThickness": "0.8", + "barHeight": 25, + "barSpace": 15, + "heights": { + "vertical": "250", + "horizontal": 750, + "mobileVertical": "150" + }, + "xAxis": { + "sortDates": false, + "anchors": [], + "type": "date", + "showTargetLabel": true, + "targetLabel": "Target", + "hideAxis": false, + "hideLabel": false, + "hideTicks": false, + "size": "", + "tickRotation": 0, + "min": "", + "max": "", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "numTicks": "6", + "labelOffset": "", + "axisPadding": 200, + "target": 0, + "maxTickRotation": "45", + "padding": 6, + "showYearsOnce": false, + "sortByRecentDate": false, + "dataKey": "week_end", + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %-d %Y", + "axisBBox": 38.27333068847656, + "tickWidthMax": 108, + "manual": false, + "manualStep": "2", + "viewportStepCount": { + "sm": "4", + "xs": "4", + "xxs": "4" + }, + "viewportNumTicks": { + "sm": "4", + "xs": "4", + "xxs": "3" + } + }, + "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": "", + "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 + }, + "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", + "onlyShowTopPrefixSuffix": true + }, + "confidenceKeys": {}, + "visual": { + "border": true, + "accent": true, + "background": true, + "verticalHoverLine": false, + "horizontalHoverLine": false + }, + "useLogScale": false, + "filterBehavior": "Filter Change", + "highlightedBarValues": [], + "series": [ + { + "dataKey": "Received vaccine", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Definitely will get a vaccine", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Probably will get a vaccine or are unsure", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Probably or definitely will not get a vaccine", + "type": "Bar", + "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": "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": [] + }, + "visualizationType": "Bar", + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "vaccination_intent_category", + "xKey": "week_end", + "valueKeysTallSupport": [ + "value" + ], + "ignoredKeys": [ + "suppression_flag", + "95_confidence_interval_lower", + "95_confidence_internal_range", + "95_confidence_interval_upper" + ] + }, + "version": "4.24.10", + "description": "

95% confidence intervals for the point estimates are presented at the data.cdc.gov link below.

Data last updated on and presented through . View this dataset on data.CDC.gov.

", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "RSV" + ], + "filterStyle": "dropdown", + "id": 1726690265720, + "columnName": "pathogen", + "showDropdown": false, + "active": "RSV" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsIntent7b.json", + "customColors": [ + "#012551", + "#1192E9", + "#002D9D", + "#A66EFF", + "#0A6C75", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD" + ] +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-trends-viz.json b/packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-trends-viz.json new file mode 100644 index 000000000..afe706264 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/rsv-vaccination-trends-viz.json @@ -0,0 +1,379 @@ +{ + "annotations": [], + "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": "flat", + "roundingStyle": "standard", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": true + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "size": "30", + "gridLines": true, + "enablePadding": false, + "min": "0.1", + "max": "100", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": 0, + "rightLabel": "", + "rightLabelOffsetSize": 0, + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "5", + "axisPadding": 0, + "scalePadding": 10, + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "", + "maxValue": "100" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "", + "tickRotation": 0, + "min": "", + "max": "", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "numTicks": "4", + "labelOffset": "", + "axisPadding": 200, + "target": 0, + "maxTickRotation": "45", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %-d %Y", + "axisBBox": 24.273334503173828, + "tickWidthMax": 98, + "viewportNumTicks": { + "xxs": "4" + }, + "manual": false + }, + "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": "", + "lineMode": false, + "verticalSorted": false, + "highlightOnHover": false, + "hideSuppressedLabels": false, + "hideSuppressionLink": false, + "seriesHighlight": [], + "style": "lines", + "subStyle": "linear blocks", + "tickRotation": "", + "hideBorder": { + "side": false, + "topBottom": true + }, + "position": "bottom" + }, + "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": " percent vaccinated", + "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": "Adults", + "type": "Line", + "axis": "Left", + "tooltip": true, + "name": "Adults (75+)" + } + ], + "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": "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": [] + }, + "visualizationType": "Line", + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "dataDescription": { + "horizontal": false, + "series": true, + "seriesKey": "demographic_group", + "singleRow": false, + "xKey": "week_end", + "valueKeysTallSupport": [ + "value" + ], + "ignoredKeys": [ + "suppression_flag", + "95_confidence_interval_lower", + "95_confidence_interval_upper" + ] + }, + "version": "4.24.10", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "COVID-19", + "Influenza", + "RSV" + ], + "filterStyle": "dropdown", + "id": 1726673322691, + "columnName": "pathogen", + "setByQueryParameter": "RSV", + "showDropdown": false, + "active": "RSV" + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NISVaccinationsCumulative7a.json", + "showLineSeriesLabels": false, + "colorMatchLineSeriesLabels": false, + "customColors": [ + "#890664", + "#890664" + ], + "description": "

95% confidence intervals for the point estimates are presented at the data.cdc.gov link below.

Data last updated on and presented through . View this dataset on data.CDC.gov.

" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/test-in-percent-test-positivity-in-usa.json b/packages/chart/src/_stories/_mock/respiratory-virus/test-in-percent-test-positivity-in-usa.json new file mode 100644 index 000000000..2e19d77c6 --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/test-in-percent-test-positivity-in-usa.json @@ -0,0 +1,881 @@ +{ + "annotations": [], + "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": "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": 10, + "tickRotation": "", + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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, + "sortByRecentDate": false, + "dataKey": "week_end", + "label": "", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "tickWidthMax": 83, + "axisBBox": 42.36000061035156, + "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": "%B %-d, %Y", + "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", + "showLegendValuesTooltip": false + }, + "brush": { + "height": 25, + "active": false, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "", + "COVID-19": "6.9", + "RSV": "10.2", + "Influenza": "2.0" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "", + "COVID-19": "6.9", + "RSV": "12.5", + "Influenza": "2.7" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "", + "COVID-19": "7.1", + "RSV": "14.6", + "Influenza": "3.5" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "", + "COVID-19": "6.8", + "RSV": "16.5", + "Influenza": "5.4" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "", + "COVID-19": "6.9", + "RSV": "18.3", + "Influenza": "8.4" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "", + "COVID-19": "6.5", + "RSV": "19.1", + "Influenza": "12.8" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "", + "COVID-19": "6.8", + "RSV": "19.5", + "Influenza": "14.9" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "", + "COVID-19": "6.7", + "RSV": "16.7", + "Influenza": "18.3" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "", + "COVID-19": "7.6", + "RSV": "13.4", + "Influenza": "25.8" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "", + "COVID-19": "8.6", + "RSV": "10.5", + "Influenza": "25.6" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "", + "COVID-19": "8.7", + "RSV": "7.9", + "Influenza": "26.3" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "", + "COVID-19": "9.4", + "RSV": "6.7", + "Influenza": "24.5" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "", + "COVID-19": "9.8", + "RSV": "5.6", + "Influenza": "20.8" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "", + "COVID-19": "10.6", + "RSV": "5.1", + "Influenza": "14.9" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "", + "COVID-19": "10.3", + "RSV": "4.9", + "Influenza": "8.6" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "", + "COVID-19": "8.8", + "RSV": "4.0", + "Influenza": "4.6" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "", + "COVID-19": "8.5", + "RSV": "3.3", + "Influenza": "2.9" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "", + "COVID-19": "8.3", + "RSV": "2.5", + "Influenza": "2.1" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "", + "COVID-19": "8.0", + "RSV": "2.2", + "Influenza": "1.7" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "", + "COVID-19": "8.0", + "RSV": "1.8", + "Influenza": "1.4" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "", + "COVID-19": "8.1", + "RSV": "1.6", + "Influenza": "1.1" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "", + "COVID-19": "7.9", + "RSV": "1.4", + "Influenza": "1.0" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "", + "COVID-19": "7.4", + "RSV": "1.2", + "Influenza": "0.9" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "", + "COVID-19": "6.8", + "RSV": "1.1", + "Influenza": "1.0" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "", + "COVID-19": "6.8", + "RSV": "0.9", + "Influenza": "0.9" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "", + "COVID-19": "6.9", + "RSV": "0.8", + "Influenza": "0.9" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "", + "COVID-19": "6.5", + "RSV": "0.7", + "Influenza": "1.0" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "", + "COVID-19": "6.2", + "RSV": "0.6", + "Influenza": "1.1" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "", + "COVID-19": "5.7", + "RSV": "0.6", + "Influenza": "1.0" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "", + "COVID-19": "5.0", + "RSV": "0.5", + "Influenza": "0.8" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "", + "COVID-19": "4.9", + "RSV": "0.5", + "Influenza": "1.0" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "", + "COVID-19": "5.0", + "RSV": "0.5", + "Influenza": "0.9" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "", + "COVID-19": "4.8", + "RSV": "0.5", + "Influenza": "1.0" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "", + "COVID-19": "4.6", + "RSV": "0.5", + "Influenza": "1.2" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "", + "COVID-19": "4.6", + "RSV": "0.4", + "Influenza": "1.2" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "", + "COVID-19": "4.2", + "RSV": "0.5", + "Influenza": "1.3" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "", + "COVID-19": "4.1", + "RSV": "0.5", + "Influenza": "1.1" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "", + "COVID-19": "4.3", + "RSV": "0.5", + "Influenza": "1.1" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "", + "COVID-19": "4.4", + "RSV": "0.6", + "Influenza": "0.9" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "", + "COVID-19": "4.9", + "RSV": "0.6", + "Influenza": "1.1" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "", + "COVID-19": "5.7", + "RSV": "0.5", + "Influenza": "1.2" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "", + "COVID-19": "6.6", + "RSV": "0.6", + "Influenza": "1.0" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "", + "COVID-19": "7.5", + "RSV": "0.8", + "Influenza": "1.0" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "", + "COVID-19": "8.9", + "RSV": "0.8", + "Influenza": "1.0" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "", + "COVID-19": "10.6", + "RSV": "0.9", + "Influenza": "1.1" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "", + "COVID-19": "12.3", + "RSV": "0.8", + "Influenza": "0.9" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "", + "COVID-19": "13.3", + "RSV": "0.8", + "Influenza": "0.9" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "", + "COVID-19": "14.6", + "RSV": "1.2", + "Influenza": "0.8" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "", + "COVID-19": "14.1", + "RSV": "1.1", + "Influenza": "0.7" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "", + "COVID-19": "13.9", + "RSV": "1.3", + "Influenza": "0.7" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "", + "COVID-19": "12.6", + "RSV": "1.4", + "Influenza": "0.8" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "", + "COVID-19": "12.0", + "RSV": "2.1", + "Influenza": "0.9" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "", + "COVID-19": "10.9", + "RSV": "2.9", + "Influenza": "0.9" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "", + "COVID-19": "10.0", + "RSV": "3.7", + "Influenza": "1.1" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "", + "COVID-19": "9.1", + "RSV": "4.8", + "Influenza": "1.3" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "", + "COVID-19": "9.4", + "RSV": "6.0", + "Influenza": "1.5" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "", + "COVID-19": "9.5", + "RSV": "7.7", + "Influenza": "1.8" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "", + "COVID-19": "9.3", + "RSV": "9.2", + "Influenza": "2.6" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "", + "COVID-19": "10.0", + "RSV": "10.7", + "Influenza": "4.0" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "", + "COVID-19": "9.6", + "RSV": "12.0", + "Influenza": "4.9" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "", + "COVID-19": "10.9", + "RSV": "12.9", + "Influenza": "6.1" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "", + "COVID-19": "11.7", + "RSV": "11.9", + "Influenza": "7.0" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "", + "COVID-19": "11.6", + "RSV": "12.1", + "Influenza": "8.4" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "", + "COVID-19": "11.9", + "RSV": "12.2", + "Influenza": "13.4" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "", + "COVID-19": "12.4", + "RSV": "11.2", + "Influenza": "17.3" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "", + "COVID-19": "12.8", + "RSV": "10.5", + "Influenza": "18.1" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "", + "COVID-19": "12.9", + "RSV": "9.9", + "Influenza": "13.8" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "", + "COVID-19": "12.0", + "RSV": "8.3", + "Influenza": "13.8" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "", + "COVID-19": "10.8", + "RSV": "7.2", + "Influenza": "14.2" + } + ], + "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": " percent of tests positive", + "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": "COVID-19", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Influenza", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "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", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NREVSSWeeklyPercentPositive.json", + "customColors": [ + "#f06f19", + "#0a58d6", + "#890664", + "#000000", + "#89bf13", + "#94036f", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/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:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NREVSSWeeklyPercentPositive.json", + "description": "
Data last updated on and presented through . View this dataset on data.cdc.gov.
", + "regions": [ + { + "from": "14", + "to": "2024-01-13", + "label": "", + "background": "#777777", + "toType": "Last Date", + "fromType": "Previous Days" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/trends-nhsn.json b/packages/chart/src/_stories/_mock/respiratory-virus/trends-nhsn.json new file mode 100644 index 000000000..6f15b46bc --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/trends-nhsn.json @@ -0,0 +1,1088 @@ +{ + "annotations": [], + "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": "flat", + "roundingStyle": "standard", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": true + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [ + { + "type": "effect", + "seriesKey": "COVID-19", + "label": "Less than 80% of hospitals reporting", + "column": "reporting_above_80_percent", + "value": "False", + "style": "Open Circles", + "displayTooltip": true, + "displayLegend": true, + "displayTable": true, + "symbol": "", + "iconCode": "", + "lineCode": "◯", + "hideBarSymbol": false, + "hideLineStyle": false, + "circleSize": 6, + "displayGray": true + }, + { + "type": "effect", + "seriesKey": "Influenza", + "label": "", + "column": "reporting_above_80_percent", + "value": "False", + "style": "Open Circles", + "displayTooltip": true, + "displayLegend": true, + "displayTable": true, + "symbol": "", + "iconCode": "", + "lineCode": "◯", + "hideBarSymbol": false, + "hideLineStyle": false, + "circleSize": 6, + "displayGray": true + }, + { + "type": "effect", + "seriesKey": "RSV", + "label": "", + "column": "reporting_above_80_percent", + "value": "False", + "style": "Open Circles", + "displayTooltip": true, + "displayLegend": true, + "displayTable": true, + "symbol": "", + "iconCode": "", + "lineCode": "◯", + "hideBarSymbol": false, + "hideLineStyle": false, + "circleSize": 6, + "displayGray": true + } + ], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "size": "35", + "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": "20", + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": "110", + "tickRotation": "", + "min": "", + "max": "", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "numTicks": "6", + "labelOffset": 0, + "axisPadding": 0, + "target": 0, + "maxTickRotation": 0, + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %-d %Y", + "label": "", + "tickWidthMax": 96, + "axisBBox": 38.27333068847656, + "manual": true, + "viewportNumTicks": { + "xs": "4", + "xxs": "4" + } + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "show": true + }, + "orientation": "vertical", + "color": "pinkpurple", + "columns": { + "percent_hospitals_reporting": { + "label": "Percent of Hospitals Reporting", + "dataTable": true, + "tooltips": true, + "prefix": "", + "suffix": "%", + "forestPlot": false, + "startingPoint": "0", + "forestPlotAlignRight": false, + "roundToPlace": 0, + "commas": false, + "showInViz": false, + "forestPlotStartingPoint": 0, + "name": "percent_hospitals_reporting" + } + }, + "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": "lines", + "subStyle": "linear blocks", + "tickRotation": "", + "hideBorder": { + "side": false, + "topBottom": true + }, + "position": "bottom" + }, + "brush": { + "height": 25, + "active": false, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.3", + "Influenza": "0.3" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.1", + "Influenza": "0.4" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.9", + "Influenza": "0.5" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.9", + "Influenza": "0.7" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.0", + "Influenza": "1.2" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.1", + "Influenza": "1.9" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.2", + "Influenza": "2.5" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.3", + "Influenza": "3.2" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "8.0", + "Influenza": "5.4" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "10.2", + "Influenza": "7.9" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "10.5", + "Influenza": "7.1" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "11.0", + "Influenza": "6.4" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "11.8", + "Influenza": "5.9" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "13.4", + "Influenza": "5.8" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "13.4", + "Influenza": "4.2" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "11.3", + "Influenza": "2.2" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "9.5", + "Influenza": "1.3" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "8.5", + "Influenza": "0.9" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "8.0", + "Influenza": "0.7" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "8.0", + "Influenza": "0.7" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.7", + "Influenza": "0.6" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.3", + "Influenza": "0.5" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.7", + "Influenza": "0.4" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.1", + "Influenza": "0.4" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.5", + "Influenza": "0.4" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.2", + "Influenza": "0.4" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.8", + "Influenza": "0.4" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.4", + "Influenza": "0.4" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.0", + "Influenza": "0.3" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "3.6", + "Influenza": "0.3" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "3.1", + "Influenza": "0.3" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.9", + "Influenza": "0.3" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.8", + "Influenza": "0.3" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.5", + "Influenza": "0.3" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.4", + "Influenza": "0.3" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.2", + "Influenza": "0.3" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.1", + "Influenza": "0.3" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.0", + "Influenza": "0.3" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "1.9", + "Influenza": "0.2" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.0", + "Influenza": "0.2" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "1.9", + "Influenza": "0.2" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.2", + "Influenza": "0.2" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.4", + "Influenza": "0.2" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "2.7", + "Influenza": "0.2" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "3.2", + "Influenza": "0.2" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "3.8", + "Influenza": "0.2" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.5", + "Influenza": "0.2" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.3", + "Influenza": "0.2" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.8", + "Influenza": "0.3" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.2", + "Influenza": "0.2" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.0", + "Influenza": "0.2" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.9", + "Influenza": "0.3" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.5", + "Influenza": "0.3" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.2", + "Influenza": "0.3" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.8", + "Influenza": "0.4" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.8", + "Influenza": "0.4" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.9", + "Influenza": "0.5" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "4.5", + "Influenza": "0.6" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.0", + "Influenza": "0.8" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.4", + "Influenza": "1.0" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "5.8", + "Influenza": "1.3" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.9", + "Influenza": "1.7" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.0", + "Influenza": "2.2" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.6", + "Influenza": "3.0" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "8.9", + "Influenza": "4.6" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "10.5", + "Influenza": "6.3" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "10.5", + "Influenza": "5.7" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "9.3", + "Influenza": "4.6" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "7.6", + "Influenza": "3.8" + }, + { + "week_end": "2024-01-27", + "**Numeric Value Property**": "new_admissions_100k_currentweek", + "geography": "", + "COVID-19": "6.8", + "Influenza": "3.7" + } + ], + "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": " hospitalizations per 100,000 people", + "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": "COVID-19", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Influenza", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "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, + "visualizationType": "Line", + "customColors": [ + "#f06f19", + "#0a58d6", + "#890664", + "#000000", + "#0A6C75", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD", + "#C0F2FD" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NHSNWeeklyHospitalRate.json", + "dataFileSourceType": "url", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NHSNWeeklyHospitalRate.json", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "pathogen", + "xKey": "week_end", + "valueKeys": [ + "new_admissions_100k_currentweek" + ], + "ignoredKeys": [ + "new_admissions_selected_pathogen_previousweek", + "new_admissions_100k_previousweek", + "percent_change_admissions_per100k", + "percent_change_admissions", + "new_admissions_selected_pathogen_currentweek" + ] + }, + "validated": "4.24.3", + "filters": [ + { + "values": [ + "United States", + "Alabama", + "Alaska", + "American Samoa", + "Arizona", + "Arkansas", + "California", + "Colorado", + "Connecticut", + "Delaware", + "District of Columbia", + "Florida", + "Georgia", + "Guam", + "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", + "Virginia", + "Virgin Islands", + "Washington", + "West Virginia", + "Wisconsin", + "Wyoming" + ], + "active": "United States", + "filterStyle": "dropdown", + "order": "cust", + "columnName": "geography", + "id": 1732556562584, + "orderedValues": [ + "United States", + "Alabama", + "Alaska", + "American Samoa", + "Arizona", + "Arkansas", + "California", + "Colorado", + "Connecticut", + "Delaware", + "District of Columbia", + "Florida", + "Georgia", + "Guam", + "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", + "Virginia", + "Virgin Islands", + "Washington", + "West Virginia", + "Wisconsin", + "Wyoming" + ] + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NHSNWeeklyHospitalRate.json", + "dynamicMarginTop": 0, + "description": "

Data last updated on and presented through . View this dataset on data.cdc.gov.

", + "regions": [ + { + "background": "#777777", + "from": "7", + "to": "2024-01-13", + "fromType": "Previous Days", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/trends-rsv.json b/packages/chart/src/_stories/_mock/respiratory-virus/trends-rsv.json new file mode 100644 index 000000000..22ef97f7d --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/trends-rsv.json @@ -0,0 +1,9292 @@ +{ + "annotations": [], + "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": "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": "12", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": 0, + "rightLabel": "", + "rightLabelOffsetSize": 0, + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "5", + "axisPadding": 0, + "scalePadding": 10, + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "" + }, + "boxplot": { + "plots": [], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + } + }, + "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": 200, + "target": 0, + "maxTickRotation": "0", + "padding": "0", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "tickWidthMax": 83, + "label": "", + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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, + "data": [ + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "2.5" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "2.8" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "3.6" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "6.7", + "Influenza-rate_currentweek": "2.5", + "RSV-rate_currentweek": "4.5" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "5.1" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "3.9", + "RSV-rate_currentweek": "4.7" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "6.9", + "RSV-rate_currentweek": "4.1" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "9.3", + "Influenza-rate_currentweek": "8.7", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "9.4", + "Influenza-rate_currentweek": "7.3", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "9.5", + "Influenza-rate_currentweek": "6.4", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "9.7", + "Influenza-rate_currentweek": "5.6", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "10.9", + "Influenza-rate_currentweek": "5.2", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "10.3", + "Influenza-rate_currentweek": "3.0", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "8.0", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "2.5" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "1.4", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "2.1", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "2.9", + "RSV-rate_currentweek": "3.5" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "4.2", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "6.7", + "RSV-rate_currentweek": "4.0" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "7.7", + "Influenza-rate_currentweek": "9.0", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "6.9", + "RSV-rate_currentweek": "3.8" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "5.5", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "4.2", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "4.0", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "3.5", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "3.5", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "3.4", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "3.3", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "3.4", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "2.2", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "8.2", + "Influenza-rate_currentweek": "4.3", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "9.9", + "Influenza-rate_currentweek": "6.3", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "11.5", + "Influenza-rate_currentweek": "6.1", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "10.7", + "Influenza-rate_currentweek": "5.0", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "10.4", + "Influenza-rate_currentweek": "5.8", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "10.6", + "Influenza-rate_currentweek": "4.9", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "10.2", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "6.7", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "5.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "Influenza-rate_currentweek": "2.4", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "7.3", + "Influenza-rate_currentweek": "2.5", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "2.9", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "4.4", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "5.0", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "8.2", + "Influenza-rate_currentweek": "5.0", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "7.9", + "Influenza-rate_currentweek": "2.9", + "RSV-rate_currentweek": "1.9" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "4.6" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "6.9" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "8.7", + "Influenza-rate_currentweek": "1.8", + "RSV-rate_currentweek": "11.5" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "7.9", + "Influenza-rate_currentweek": "3.8", + "RSV-rate_currentweek": "10.2" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "8.8", + "Influenza-rate_currentweek": "6.2", + "RSV-rate_currentweek": "10.3" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "9.5", + "Influenza-rate_currentweek": "7.2", + "RSV-rate_currentweek": "8.8" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "7.9", + "Influenza-rate_currentweek": "6.3", + "RSV-rate_currentweek": "6.5" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "6.1", + "RSV-rate_currentweek": "5.1" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "5.3", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "5.0", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "2.9", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "1.4", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "3.1", + "RSV-rate_currentweek": "2.5" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "4.3", + "RSV-rate_currentweek": "5.1" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "6.1", + "RSV-rate_currentweek": "6.6" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "6.4", + "RSV-rate_currentweek": "7.1" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "5.8", + "RSV-rate_currentweek": "6.4" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "5.0", + "Influenza-rate_currentweek": "5.9", + "RSV-rate_currentweek": "4.8" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "4.1" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "4.3", + "RSV-rate_currentweek": "4.1" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "3.3", + "RSV-rate_currentweek": "3.3" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "3.1", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "2.4", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "1.8", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.4", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "15.3", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "14.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "16.5", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "4.1" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "16.5", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "4.0" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "12.8", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "5.3" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "13.5", + "Influenza-rate_currentweek": "1.4", + "RSV-rate_currentweek": "5.1" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "12.7", + "Influenza-rate_currentweek": "2.2", + "RSV-rate_currentweek": "5.5" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "10.6", + "Influenza-rate_currentweek": "3.3", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "15.7", + "Influenza-rate_currentweek": "12.6", + "RSV-rate_currentweek": "4.0" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "17.6", + "Influenza-rate_currentweek": "20.8", + "RSV-rate_currentweek": "3.3" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "18.7", + "Influenza-rate_currentweek": "16.7", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "19.1", + "Influenza-rate_currentweek": "13.3", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "21.1", + "Influenza-rate_currentweek": "9.9", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "29.6", + "Influenza-rate_currentweek": "10.3", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "26.1", + "Influenza-rate_currentweek": "5.6", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "25.6", + "Influenza-rate_currentweek": "1.4", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "19.6", + "Influenza-rate_currentweek": "1.4", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "16.9", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "12.6", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "13.7", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "11.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "9.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "5.0", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "7.3", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "6.7", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "3.0" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "8.3", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "5.3" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "10.7", + "Influenza-rate_currentweek": "3.7", + "RSV-rate_currentweek": "5.6" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "10.1", + "Influenza-rate_currentweek": "3.8", + "RSV-rate_currentweek": "6.1" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "10.4", + "Influenza-rate_currentweek": "5.7", + "RSV-rate_currentweek": "4.8" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "13.3", + "Influenza-rate_currentweek": "5.4", + "RSV-rate_currentweek": "5.1" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "17.2", + "Influenza-rate_currentweek": "10.6", + "RSV-rate_currentweek": "6.7" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "17.4", + "Influenza-rate_currentweek": "9.0", + "RSV-rate_currentweek": "6.6" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "14.0", + "Influenza-rate_currentweek": "6.1", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "9.3", + "Influenza-rate_currentweek": "4.8", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "9.4", + "Influenza-rate_currentweek": "6.6", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "8.8", + "Influenza-rate_currentweek": "5.8", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "7.2", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "7.0", + "RSV-rate_currentweek": "2.5" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "8.5", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "7.2", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "6.1", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "4.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "3.5", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "3.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "4.2", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "2.5", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "3.0", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "5.8", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "6.5", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "4.7", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "5.5", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "7.3", + "Influenza-rate_currentweek": "4.8", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "8.3", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "8.9", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "11.0", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "14.0", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "13.6", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "9.7", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "8.4", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "7.9", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "2.8" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "2.8" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "2.8" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "2.8" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "2.1", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "2.8", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "3.3", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "7.4", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "12.9", + "RSV-rate_currentweek": "1.9" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "8.9", + "Influenza-rate_currentweek": "16.3", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "10.7", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "7.8", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "6.6", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "5.6", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "4.2", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "6.7", + "Influenza-rate_currentweek": "3.7", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "2.2", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "2.1", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.4", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "3.8" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "3.4", + "RSV-rate_currentweek": "5.0" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "5.2" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "5.5", + "Influenza-rate_currentweek": "5.6", + "RSV-rate_currentweek": "4.6" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "5.5", + "RSV-rate_currentweek": "4.1" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "8.0", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "10.0", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "7.1", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "8.8", + "Influenza-rate_currentweek": "5.3", + "RSV-rate_currentweek": "1.9" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "10.1", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "11.4", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "11.6", + "Influenza-rate_currentweek": "3.3", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "9.4", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "3.3" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "4.0" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "1.4", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "5.5", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "5.2" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "5.0" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "5.5" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "7.7", + "RSV-rate_currentweek": "4.6" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "11.7", + "RSV-rate_currentweek": "4.6" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "8.2", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "6.6", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "3.8", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "3.1", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "3.8", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "4.9", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "4.7", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "5.0", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "3.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "2.3", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "8.2", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "8.6", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "8.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "3.8" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "9.8", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "4.1" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "8.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "6.6" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "9.7" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "7.9" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "8.1", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "7.8" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "4.7" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "8.8", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "5.2" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "9.1", + "Influenza-rate_currentweek": "6.7", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "9.4", + "Influenza-rate_currentweek": "11.1", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "12.7", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "10.4", + "Influenza-rate_currentweek": "9.5", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "9.3", + "Influenza-rate_currentweek": "5.6", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "2.4", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "8.0", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "0.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "3.9" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "9.5", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "5.2" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "9.8", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "4.3" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "10.0", + "Influenza-rate_currentweek": "6.4", + "RSV-rate_currentweek": "4.8" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "9.7", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "5.0" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "8.3", + "Influenza-rate_currentweek": "3.1", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "3.5", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "4.1", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "5.8", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "6.7", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "9.8", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "7.2", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "6.4", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "4.0", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "4.2", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "9.0", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "3.5" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "10.0", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "3.8" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "8.9", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "5.5" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "9.7", + "Influenza-rate_currentweek": "3.1", + "RSV-rate_currentweek": "5.5" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "10.1", + "Influenza-rate_currentweek": "6.9", + "RSV-rate_currentweek": "5.8" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "10.7", + "Influenza-rate_currentweek": "7.7", + "RSV-rate_currentweek": "4.9" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "11.0", + "Influenza-rate_currentweek": "12.1", + "RSV-rate_currentweek": "3.8" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "12.4", + "Influenza-rate_currentweek": "9.5", + "RSV-rate_currentweek": "4.1" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "11.7", + "Influenza-rate_currentweek": "6.6", + "RSV-rate_currentweek": "3.3" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "11.2", + "Influenza-rate_currentweek": "3.9", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "11.4", + "Influenza-rate_currentweek": "2.3", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "11.9", + "Influenza-rate_currentweek": "2.3", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "10.2", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "7.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "3.6" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "7.7", + "Influenza-rate_currentweek": "2.3", + "RSV-rate_currentweek": "3.8" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "8.1", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "3.6" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "9.3", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "4.5" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "9.9", + "Influenza-rate_currentweek": "5.5", + "RSV-rate_currentweek": "5.0" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "8.8", + "Influenza-rate_currentweek": "3.9", + "RSV-rate_currentweek": "3.6" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "8.1", + "Influenza-rate_currentweek": "4.1", + "RSV-rate_currentweek": "2.8" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "4.1", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "3.7", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "3.7", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "4.0", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "3.3", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "5.0", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "10.1", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "7.9" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "11.7", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "12.9" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "12.5", + "Influenza-rate_currentweek": "2.1", + "RSV-rate_currentweek": "14.6" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "15.5", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "16.5" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "15.2", + "Influenza-rate_currentweek": "6.5", + "RSV-rate_currentweek": "12.6" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "15.7", + "Influenza-rate_currentweek": "12.6", + "RSV-rate_currentweek": "11.4" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "13.3", + "Influenza-rate_currentweek": "14.7", + "RSV-rate_currentweek": "7.0" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "10.9", + "Influenza-rate_currentweek": "15.7", + "RSV-rate_currentweek": "3.3" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "9.0", + "Influenza-rate_currentweek": "14.3", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "11.8", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "6.4", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "6.7", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "8.7", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "8.1", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "10.6", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "2.8" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "10.2", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "10.7", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "4.3" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "7.3", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "5.4" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "7.4", + "Influenza-rate_currentweek": "4.9", + "RSV-rate_currentweek": "4.2" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "6.3", + "RSV-rate_currentweek": "8.2" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "Influenza-rate_currentweek": "8.7", + "RSV-rate_currentweek": "9.8" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "11.4", + "RSV-rate_currentweek": "10.4" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "9.2", + "RSV-rate_currentweek": "9.2" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "7.2", + "RSV-rate_currentweek": "6.7" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "4.0", + "RSV-rate_currentweek": "4.8" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "3.0", + "RSV-rate_currentweek": "4.0" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "2.8", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "2.2", + "RSV-rate_currentweek": "2.5" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "1.6" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "2.2", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "2.2", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "14.1", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "15.2", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "16.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "13.7", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "3.9" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "13.8", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "6.0" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "12.1", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "8.2" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "12.2", + "Influenza-rate_currentweek": "2.4", + "RSV-rate_currentweek": "8.1" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "10.4", + "Influenza-rate_currentweek": "4.0", + "RSV-rate_currentweek": "6.8" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "8.1", + "Influenza-rate_currentweek": "7.5", + "RSV-rate_currentweek": "3.9" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "10.5", + "Influenza-rate_currentweek": "10.9", + "RSV-rate_currentweek": "5.2" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "11.5", + "Influenza-rate_currentweek": "13.3", + "RSV-rate_currentweek": "3.9" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "11.9", + "Influenza-rate_currentweek": "11.9", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "12.7", + "Influenza-rate_currentweek": "9.9", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "14.4", + "Influenza-rate_currentweek": "9.7", + "RSV-rate_currentweek": "1.9" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "12.7", + "Influenza-rate_currentweek": "4.9", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "13.2", + "Influenza-rate_currentweek": "1.9", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "11.4", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "11.3", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "12.2", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "11.5", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "12.3", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "10.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "11.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "9.3", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "9.0", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "7.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "8.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "9.1", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "7.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "7.2", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "7.4", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "8.7", + "Influenza-rate_currentweek": "2.5", + "RSV-rate_currentweek": "5.0" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "9.1", + "Influenza-rate_currentweek": "3.5", + "RSV-rate_currentweek": "5.0" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "10.3", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "5.7" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "10.8", + "Influenza-rate_currentweek": "7.9", + "RSV-rate_currentweek": "6.3" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "14.7", + "Influenza-rate_currentweek": "10.3", + "RSV-rate_currentweek": "5.6" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "12.3", + "Influenza-rate_currentweek": "7.0", + "RSV-rate_currentweek": "5.4" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "11.5", + "Influenza-rate_currentweek": "6.2", + "RSV-rate_currentweek": "3.9" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "10.1", + "Influenza-rate_currentweek": "3.9", + "RSV-rate_currentweek": "4.0" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "7.7", + "Influenza-rate_currentweek": "4.0", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "4.9", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "4.2", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "5.1", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "5.2", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "3.4", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "2.4", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "3.4", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "3.0", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "5.8" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "0.0" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "0.3" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "0.5" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "1.1" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "2.2" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "2.3" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "3.6" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "7.0" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "9.5" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "7.1" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "9.9", + "Influenza-rate_currentweek": "5.6" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "8.4", + "Influenza-rate_currentweek": "4.7" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "8.1", + "Influenza-rate_currentweek": "2.9" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "7.0", + "Influenza-rate_currentweek": "2.5" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "0.7" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.6" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "0.4" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.2" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.2" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "0.1" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "0.1" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "4.4", + "Influenza-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.4" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "0.4", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "0.2" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.1" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.3" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "0.0" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.4" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "0.4" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.4" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "0.4" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "5.5", + "Influenza-rate_currentweek": "1.2" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "1.1" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "2.0" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "4.0" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "6.1" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "4.8" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "4.4" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "4.7" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "5.4" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "4.6" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "4.9" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "5.4" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "5.2" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "5.3" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "3.5" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "2.6" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "1.9" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "1.4" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "1.5" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "7.2", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "3.5" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "8.2", + "Influenza-rate_currentweek": "6.4", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "10.5", + "Influenza-rate_currentweek": "10.8", + "RSV-rate_currentweek": "4.6" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "9.2", + "Influenza-rate_currentweek": "8.6", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "7.9", + "Influenza-rate_currentweek": "8.6", + "RSV-rate_currentweek": "2.9" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "6.0", + "Influenza-rate_currentweek": "6.2", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "6.4", + "Influenza-rate_currentweek": "5.9", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "3.3", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "4.5", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "1.5" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "6.8", + "Influenza-rate_currentweek": "4.1", + "RSV-rate_currentweek": "1.9" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "2.5", + "RSV-rate_currentweek": "1.9" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "2.1", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "2.4", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "1.4", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "2.1", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "2.1", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "3.8", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "5.0", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "5.2", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "4.8", + "Influenza-rate_currentweek": "9.8", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "10.3", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "6.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "7.5", + "Influenza-rate_currentweek": "4.3", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "8.5", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "8.1", + "Influenza-rate_currentweek": "1.5", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "6.9", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "5.4", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "6.1", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "3.2", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "3.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "5.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "4.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "2.3", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "3.1", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "1.9" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "2.5" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "0.9", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "2.3", + "RSV-rate_currentweek": "3.1" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "4.1", + "RSV-rate_currentweek": "2.6" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "3.8", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "6.3", + "Influenza-rate_currentweek": "5.4", + "RSV-rate_currentweek": "2.3" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "7.6", + "Influenza-rate_currentweek": "8.0", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "6.6", + "Influenza-rate_currentweek": "6.2", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "7.1", + "Influenza-rate_currentweek": "6.0", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "3.6", + "Influenza-rate_currentweek": "3.5", + "RSV-rate_currentweek": "1.4" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "4.7", + "Influenza-rate_currentweek": "2.9", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "2.7", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "3.2", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "5.9", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "3.6", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "5.6", + "Influenza-rate_currentweek": "2.9", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "4.2", + "Influenza-rate_currentweek": "2.6", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "0.6", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2022-10-01", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "RSV-rate_currentweek": "0.7" + }, + { + "week_end": "2022-10-08", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2022-10-15", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2022-10-22", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "1.7" + }, + { + "week_end": "2022-10-29", + "geography": "", + "COVID-19-rate_currentweek": "3.7", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "3.2" + }, + { + "week_end": "2022-11-05", + "geography": "", + "COVID-19-rate_currentweek": "3.5", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "5.2" + }, + { + "week_end": "2022-11-12", + "geography": "", + "COVID-19-rate_currentweek": "5.2", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "7.0" + }, + { + "week_end": "2022-11-19", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "2.2", + "RSV-rate_currentweek": "6.9" + }, + { + "week_end": "2022-11-26", + "geography": "", + "COVID-19-rate_currentweek": "6.5", + "Influenza-rate_currentweek": "3.8", + "RSV-rate_currentweek": "9.7" + }, + { + "week_end": "2022-12-03", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "5.7", + "RSV-rate_currentweek": "9.7" + }, + { + "week_end": "2022-12-10", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "5.5", + "RSV-rate_currentweek": "7.6" + }, + { + "week_end": "2022-12-17", + "geography": "", + "COVID-19-rate_currentweek": "5.7", + "Influenza-rate_currentweek": "6.0", + "RSV-rate_currentweek": "5.5" + }, + { + "week_end": "2022-12-24", + "geography": "", + "COVID-19-rate_currentweek": "5.3", + "Influenza-rate_currentweek": "6.6", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2022-12-31", + "geography": "", + "COVID-19-rate_currentweek": "6.2", + "Influenza-rate_currentweek": "9.4", + "RSV-rate_currentweek": "4.6" + }, + { + "week_end": "2023-01-07", + "geography": "", + "COVID-19-rate_currentweek": "5.1", + "Influenza-rate_currentweek": "4.6", + "RSV-rate_currentweek": "2.4" + }, + { + "week_end": "2023-01-14", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2023-01-21", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "0.8", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-01-28", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2023-02-04", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-02-11", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.9" + }, + { + "week_end": "2023-02-18", + "geography": "", + "COVID-19-rate_currentweek": "4.1", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "1.3" + }, + { + "week_end": "2023-02-25", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-03-04", + "geography": "", + "COVID-19-rate_currentweek": "3.8", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-11", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-03-18", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-03-25", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "0.2", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-01", + "geography": "", + "COVID-19-rate_currentweek": "2.2", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2023-04-08", + "geography": "", + "COVID-19-rate_currentweek": "2.8", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-04-15", + "geography": "", + "COVID-19-rate_currentweek": "2.0", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-04-22", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-04-29", + "geography": "", + "COVID-19-rate_currentweek": "1.2", + "Influenza-rate_currentweek": "0.0", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-06", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-13", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-05-20", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-05-27", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-03", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-10", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-06-17", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-06-24", + "geography": "", + "COVID-19-rate_currentweek": "0.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-01", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-08", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-15", + "geography": "", + "COVID-19-rate_currentweek": "0.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-22", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-07-29", + "geography": "", + "COVID-19-rate_currentweek": "0.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-05", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-12", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-08-19", + "geography": "", + "COVID-19-rate_currentweek": "1.5", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-08-26", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-02", + "geography": "", + "COVID-19-rate_currentweek": "2.1", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-09", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-16", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-09-23", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-09-30", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-10-07", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-10-14", + "geography": "", + "COVID-19-rate_currentweek": "2.9", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2023-10-21", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.0" + }, + { + "week_end": "2023-10-28", + "geography": "", + "COVID-19-rate_currentweek": "1.6", + "Influenza-rate_currentweek": "0.1", + "RSV-rate_currentweek": "0.3" + }, + { + "week_end": "2023-11-04", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.4" + }, + { + "week_end": "2023-11-11", + "geography": "", + "COVID-19-rate_currentweek": "3.3", + "Influenza-rate_currentweek": "0.4", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-11-18", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.5" + }, + { + "week_end": "2023-11-25", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "1.1", + "RSV-rate_currentweek": "0.8" + }, + { + "week_end": "2023-12-02", + "geography": "", + "COVID-19-rate_currentweek": "5.8", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "1.1" + }, + { + "week_end": "2023-12-09", + "geography": "", + "COVID-19-rate_currentweek": "3.9", + "Influenza-rate_currentweek": "3.0", + "RSV-rate_currentweek": "2.0" + }, + { + "week_end": "2023-12-16", + "geography": "", + "COVID-19-rate_currentweek": "4.0", + "Influenza-rate_currentweek": "4.0", + "RSV-rate_currentweek": "2.7" + }, + { + "week_end": "2023-12-23", + "geography": "", + "COVID-19-rate_currentweek": "4.9", + "Influenza-rate_currentweek": "6.0", + "RSV-rate_currentweek": "3.4" + }, + { + "week_end": "2023-12-30", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "8.0", + "RSV-rate_currentweek": "3.3" + }, + { + "week_end": "2024-01-06", + "geography": "", + "COVID-19-rate_currentweek": "4.3", + "Influenza-rate_currentweek": "7.9", + "RSV-rate_currentweek": "3.8" + }, + { + "week_end": "2024-01-13", + "geography": "", + "COVID-19-rate_currentweek": "2.4", + "Influenza-rate_currentweek": "6.2", + "RSV-rate_currentweek": "3.3" + }, + { + "week_end": "2024-01-20", + "geography": "", + "COVID-19-rate_currentweek": "2.7", + "Influenza-rate_currentweek": "4.5", + "RSV-rate_currentweek": "4.6" + }, + { + "week_end": "2024-01-27", + "geography": "", + "COVID-19-rate_currentweek": "2.6", + "Influenza-rate_currentweek": "3.5", + "RSV-rate_currentweek": "3.5" + }, + { + "week_end": "2024-02-03", + "geography": "", + "COVID-19-rate_currentweek": "2.5", + "Influenza-rate_currentweek": "2.5", + "RSV-rate_currentweek": "4.0" + }, + { + "week_end": "2024-02-10", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "1.7", + "RSV-rate_currentweek": "3.6" + }, + { + "week_end": "2024-02-17", + "geography": "", + "COVID-19-rate_currentweek": "1.0", + "Influenza-rate_currentweek": "2.0", + "RSV-rate_currentweek": "3.5" + }, + { + "week_end": "2024-02-24", + "geography": "", + "COVID-19-rate_currentweek": "3.0", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "3.7" + }, + { + "week_end": "2024-03-02", + "geography": "", + "COVID-19-rate_currentweek": "1.7", + "Influenza-rate_currentweek": "1.6", + "RSV-rate_currentweek": "2.2" + }, + { + "week_end": "2024-03-09", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "1.3", + "RSV-rate_currentweek": "2.1" + }, + { + "week_end": "2024-03-16", + "geography": "", + "COVID-19-rate_currentweek": "1.8", + "Influenza-rate_currentweek": "1.0", + "RSV-rate_currentweek": "1.8" + }, + { + "week_end": "2024-03-23", + "geography": "", + "COVID-19-rate_currentweek": "1.1", + "Influenza-rate_currentweek": "1.2", + "RSV-rate_currentweek": "1.0" + }, + { + "week_end": "2024-03-30", + "geography": "", + "COVID-19-rate_currentweek": "1.9", + "Influenza-rate_currentweek": "0.7", + "RSV-rate_currentweek": "1.2" + }, + { + "week_end": "2024-04-06", + "geography": "", + "COVID-19-rate_currentweek": "1.4", + "Influenza-rate_currentweek": "0.6", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-04-13", + "geography": "", + "COVID-19-rate_currentweek": "1.3", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.6" + }, + { + "week_end": "2024-04-20", + "geography": "", + "COVID-19-rate_currentweek": "0.7", + "Influenza-rate_currentweek": "0.5", + "RSV-rate_currentweek": "0.1" + }, + { + "week_end": "2024-04-27", + "geography": "", + "COVID-19-rate_currentweek": "0.5", + "Influenza-rate_currentweek": "0.3", + "RSV-rate_currentweek": "0.2" + }, + { + "week_end": "2022-10-08", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-10-15", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-10-22", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-10-29", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-05", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-12", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-19", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-26", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-03", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-10", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-17", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-24", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-31", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-07", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-14", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-21", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-28", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-04", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-11", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-18", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-25", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-04", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-11", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-18", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-25", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-01", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-08", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-15", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-22", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-29", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-06", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-13", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-20", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-27", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-03", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-10", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-17", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-24", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-01", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-08", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-15", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-22", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-29", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-05", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-12", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-19", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-26", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-02", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-09", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-16", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-23", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-30", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-10-07", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-10-14", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-10-21", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-10-28", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-11-04", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-11-11", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-11-18", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-11-25", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-12-02", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-12-09", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-12-16", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-12-23", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-12-30", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-01-06", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-01-13", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-01-20", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-01-27", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-02-03", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-02-10", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-02-17", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-02-24", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-03-02", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-03-09", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-03-16", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-03-23", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-03-30", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-04-06", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-04-13", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-04-20", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2024-04-27", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-10-08", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-10-15", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-10-22", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-10-29", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-05", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-12", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-19", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-11-26", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-03", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-10", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-17", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-24", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2022-12-31", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-07", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-14", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-21", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-01-28", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-04", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-11", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-18", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-02-25", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-04", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-11", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-18", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-03-25", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-01", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-08", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-15", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-22", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-04-29", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-06", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-13", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-20", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-05-27", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-03", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-10", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-17", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-06-24", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-01", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-08", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-15", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-22", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-07-29", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-05", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-12", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-19", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-08-26", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-02", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-09", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-16", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-23", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-09-30", + "geography": "", + "Influenza-rate_currentweek": "" + }, + { + "week_end": "2023-10-07", + "geography": "", + "Influenza-rate_currentweek": "0.3" + }, + { + "week_end": "2023-10-14", + "geography": "", + "Influenza-rate_currentweek": "0.3" + }, + { + "week_end": "2023-10-21", + "geography": "", + "Influenza-rate_currentweek": "0.5" + }, + { + "week_end": "2023-10-28", + "geography": "", + "Influenza-rate_currentweek": "0.3" + }, + { + "week_end": "2023-11-04", + "geography": "", + "Influenza-rate_currentweek": "0.8" + }, + { + "week_end": "2023-11-11", + "geography": "", + "Influenza-rate_currentweek": "0.7" + }, + { + "week_end": "2023-11-18", + "geography": "", + "Influenza-rate_currentweek": "1.1" + }, + { + "week_end": "2023-11-25", + "geography": "", + "Influenza-rate_currentweek": "1.9" + }, + { + "week_end": "2023-12-02", + "geography": "", + "Influenza-rate_currentweek": "2.6" + }, + { + "week_end": "2023-12-09", + "geography": "", + "Influenza-rate_currentweek": "7.0" + }, + { + "week_end": "2023-12-16", + "geography": "", + "Influenza-rate_currentweek": "8.8" + }, + { + "week_end": "2023-12-23", + "geography": "", + "Influenza-rate_currentweek": "13.7" + }, + { + "week_end": "2023-12-30", + "geography": "", + "Influenza-rate_currentweek": "18.5" + }, + { + "week_end": "2024-01-06", + "geography": "", + "Influenza-rate_currentweek": "15.0" + }, + { + "week_end": "2024-01-13", + "geography": "", + "Influenza-rate_currentweek": "8.1" + }, + { + "week_end": "2024-01-20", + "geography": "", + "Influenza-rate_currentweek": "5.4" + }, + { + "week_end": "2024-01-27", + "geography": "", + "Influenza-rate_currentweek": "4.7" + }, + { + "week_end": "2024-02-03", + "geography": "", + "Influenza-rate_currentweek": "4.2" + }, + { + "week_end": "2024-02-10", + "geography": "", + "Influenza-rate_currentweek": "3.3" + }, + { + "week_end": "2024-02-17", + "geography": "", + "Influenza-rate_currentweek": "3.8" + }, + { + "week_end": "2024-02-24", + "geography": "", + "Influenza-rate_currentweek": "2.3" + }, + { + "week_end": "2024-03-02", + "geography": "", + "Influenza-rate_currentweek": "2.3" + }, + { + "week_end": "2024-03-09", + "geography": "", + "Influenza-rate_currentweek": "1.9" + }, + { + "week_end": "2024-03-16", + "geography": "", + "Influenza-rate_currentweek": "1.3" + }, + { + "week_end": "2024-03-23", + "geography": "", + "Influenza-rate_currentweek": "1.1" + }, + { + "week_end": "2024-03-30", + "geography": "", + "Influenza-rate_currentweek": "1.5" + }, + { + "week_end": "2024-04-06", + "geography": "", + "Influenza-rate_currentweek": "0.7" + }, + { + "week_end": "2024-04-13", + "geography": "", + "Influenza-rate_currentweek": "0.6" + }, + { + "week_end": "2024-04-20", + "geography": "", + "Influenza-rate_currentweek": "0.5" + }, + { + "week_end": "2024-04-27", + "geography": "", + "Influenza-rate_currentweek": "0.5" + } + ] + }, + "exclusions": { + "active": false, + "keys": [] + }, + "palette": "qualitative-bold", + "isPaletteReversed": false, + "twoColor": { + "palette": "monochrome-1", + "isPaletteReversed": false + }, + "labels": false, + "dataFormat": { + "commas": false, + "prefix": "", + "suffix": " hospitalizations per 100,000 people", + "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": "COVID-19", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Influenza", + "type": "Line", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "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": "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": [] + }, + "suppressedData": [], + "customColors": [ + "#F06F19", + "#0A58D6", + "#890664", + "#0f66bc", + "#94036f", + "#000000", + "#844172", + "#c9733c", + "#006b75", + "#Cccccc", + "#C0F2FD" + ], + "datasets": {}, + "visualizationType": "Line", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RespNetWeeklyHospitalRate.json", + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RespNetWeeklyHospitalRate.json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "pathogen", + "xKey": "week_end", + "valueKeysTallSupport": [ + "rate_currentweek" + ], + "ignoredKeys": [ + "percent_change_rate", + "rate_previousweek" + ] + }, + "validated": "4.24.3", + "dynamicMarginTop": 0, + "filters": [ + { + "values": [ + "Overall Network", + "California", + "Colorado", + "Connecticut", + "Georgia", + "Maryland", + "Michigan", + "Minnesota", + "New Mexico", + "New York", + "North Carolina", + "Ohio", + "Oregon", + "Tennessee", + "Utah" + ], + "active": "Overall Network", + "filterStyle": "dropdown", + "order": "cust", + "showDropdown": true, + "columnName": "geography", + "orderedValues": [ + "Overall Network", + "California", + "Colorado", + "Connecticut", + "Georgia", + "Maryland", + "Michigan", + "Minnesota", + "New Mexico", + "New York", + "North Carolina", + "Ohio", + "Oregon", + "Tennessee", + "Utah" + ], + "label": "State/Territory", + "id": 1726167878406 + } + ], + "runtimeDataUrl": "https:/https://www.cdc.gov/wcms-wp.cdc.govhttps://www.cdc.gov/wcms/vizdata/Respitory_Viruses/RespNetWeeklyHospitalRate.json", + "description": "

Data last updated on and presented through . View this dataset on data.cdc.gov.

", + "regions": [ + { + "background": "#777777", + "fromType": "Previous Days", + "from": "14", + "toType": "Last Date" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/chart/src/_stories/_mock/respiratory-virus/trends-viral-deaths-2.json b/packages/chart/src/_stories/_mock/respiratory-virus/trends-viral-deaths-2.json new file mode 100644 index 000000000..f4fd5c9ab --- /dev/null +++ b/packages/chart/src/_stories/_mock/respiratory-virus/trends-viral-deaths-2.json @@ -0,0 +1,3700 @@ +{ + "annotations": [], + "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": "stacked", + "barStyle": "flat", + "roundingStyle": "finger", + "tipRounding": "top", + "isResponsiveTicks": false, + "general": { + "annotationDropdownText": "Annotations", + "showDownloadButton": false, + "showMissingDataLabel": true, + "showSuppressedSymbol": true, + "showZeroValueData": true, + "hideNullValue": false, + "showZeroValueDataLabel": true + }, + "padding": { + "left": 5, + "right": 5 + }, + "preliminaryData": [], + "yAxis": { + "hideAxis": true, + "displayNumbersOnBar": false, + "hideLabel": false, + "hideTicks": true, + "size": "20", + "gridLines": true, + "enablePadding": false, + "min": "", + "max": "8", + "labelColor": "#333", + "tickLabelColor": "#333", + "tickColor": "#333", + "rightHideAxis": true, + "rightAxisSize": "", + "rightLabel": "", + "rightLabelOffsetSize": "2", + "rightAxisLabelColor": "#333", + "rightAxisTickLabelColor": "#333", + "rightAxisTickColor": "#333", + "numTicks": "5", + "axisPadding": 0, + "scalePadding": 10, + "tickRotation": 0, + "anchors": [], + "shoMissingDataLabel": true, + "showMissingDataLine": true, + "categories": [], + "label": "", + "rightHideTicks": true, + "rightMax": "", + "rightHideLabel": true + }, + "boxplot": { + "plots": [ + { + "columnCategory": "2022-10-01", + "columnMax": 4.06, + "columnThirdQuartile": "NaN", + "columnMedian": "4.1", + "columnFirstQuartile": "4.1", + "columnMin": 4.06, + "columnTotal": 4.06, + "columnSd": "NaN", + "columnMean": "4.1", + "columnIqr": "NaN", + "columnLowerBounds": 4.06, + "columnUpperBounds": 4.06, + "columnOutliers": [], + "values": [ + 4.06 + ], + "nonOutlierValues": [ + 4.06 + ] + }, + { + "columnCategory": "2022-10-08", + "columnMax": 3.68, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.68, + "columnTotal": 3.68, + "columnSd": "NaN", + "columnMean": "3.7", + "columnIqr": "NaN", + "columnLowerBounds": 3.68, + "columnUpperBounds": 3.68, + "columnOutliers": [], + "values": [ + 3.68 + ], + "nonOutlierValues": [ + 3.68 + ] + }, + { + "columnCategory": "2022-10-15", + "columnMax": 3.6, + "columnThirdQuartile": "NaN", + "columnMedian": "3.6", + "columnFirstQuartile": "3.6", + "columnMin": 3.6, + "columnTotal": 3.6, + "columnSd": "NaN", + "columnMean": "3.6", + "columnIqr": "NaN", + "columnLowerBounds": 3.6, + "columnUpperBounds": 3.6, + "columnOutliers": [], + "values": [ + 3.6 + ], + "nonOutlierValues": [ + 3.6 + ] + }, + { + "columnCategory": "2022-10-22", + "columnMax": 3.66, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.66, + "columnTotal": 3.66, + "columnSd": "NaN", + "columnMean": "3.7", + "columnIqr": "NaN", + "columnLowerBounds": 3.66, + "columnUpperBounds": 3.66, + "columnOutliers": [], + "values": [ + 3.66 + ], + "nonOutlierValues": [ + 3.66 + ] + }, + { + "columnCategory": "2022-10-29", + "columnMax": 3.74, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.74, + "columnTotal": 3.74, + "columnSd": "NaN", + "columnMean": "3.7", + "columnIqr": "NaN", + "columnLowerBounds": 3.74, + "columnUpperBounds": 3.74, + "columnOutliers": [], + "values": [ + 3.74 + ], + "nonOutlierValues": [ + 3.74 + ] + }, + { + "columnCategory": "2022-11-05", + "columnMax": 3.68, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.68, + "columnTotal": 3.68, + "columnSd": "NaN", + "columnMean": "3.7", + "columnIqr": "NaN", + "columnLowerBounds": 3.68, + "columnUpperBounds": 3.68, + "columnOutliers": [], + "values": [ + 3.68 + ], + "nonOutlierValues": [ + 3.68 + ] + }, + { + "columnCategory": "2022-11-12", + "columnMax": 3.61, + "columnThirdQuartile": "NaN", + "columnMedian": "3.6", + "columnFirstQuartile": "3.6", + "columnMin": 3.61, + "columnTotal": 3.61, + "columnSd": "NaN", + "columnMean": "3.6", + "columnIqr": "NaN", + "columnLowerBounds": 3.61, + "columnUpperBounds": 3.61, + "columnOutliers": [], + "values": [ + 3.61 + ], + "nonOutlierValues": [ + 3.61 + ] + }, + { + "columnCategory": "2022-11-19", + "columnMax": 3.66, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.66, + "columnTotal": 3.66, + "columnSd": "NaN", + "columnMean": "3.7", + "columnIqr": "NaN", + "columnLowerBounds": 3.66, + "columnUpperBounds": 3.66, + "columnOutliers": [], + "values": [ + 3.66 + ], + "nonOutlierValues": [ + 3.66 + ] + }, + { + "columnCategory": "2022-11-26", + "columnMax": 3.87, + "columnThirdQuartile": "NaN", + "columnMedian": "3.9", + "columnFirstQuartile": "3.9", + "columnMin": 3.87, + "columnTotal": 3.87, + "columnSd": "NaN", + "columnMean": "3.9", + "columnIqr": "NaN", + "columnLowerBounds": 3.87, + "columnUpperBounds": 3.87, + "columnOutliers": [], + "values": [ + 3.87 + ], + "nonOutlierValues": [ + 3.87 + ] + }, + { + "columnCategory": "2022-12-03", + "columnMax": 3.94, + "columnThirdQuartile": "NaN", + "columnMedian": "3.9", + "columnFirstQuartile": "3.9", + "columnMin": 3.94, + "columnTotal": 3.94, + "columnSd": "NaN", + "columnMean": "3.9", + "columnIqr": "NaN", + "columnLowerBounds": 3.94, + "columnUpperBounds": 3.94, + "columnOutliers": [], + "values": [ + 3.94 + ], + "nonOutlierValues": [ + 3.94 + ] + }, + { + "columnCategory": "2022-12-10", + "columnMax": 4.53, + "columnThirdQuartile": "NaN", + "columnMedian": "4.5", + "columnFirstQuartile": "4.5", + "columnMin": 4.53, + "columnTotal": 4.53, + "columnSd": "NaN", + "columnMean": "4.5", + "columnIqr": "NaN", + "columnLowerBounds": 4.53, + "columnUpperBounds": 4.53, + "columnOutliers": [], + "values": [ + 4.53 + ], + "nonOutlierValues": [ + 4.53 + ] + }, + { + "columnCategory": "2022-12-17", + "columnMax": 4.8, + "columnThirdQuartile": "NaN", + "columnMedian": "4.8", + "columnFirstQuartile": "4.8", + "columnMin": 4.8, + "columnTotal": 4.8, + "columnSd": "NaN", + "columnMean": "4.8", + "columnIqr": "NaN", + "columnLowerBounds": 4.8, + "columnUpperBounds": 4.8, + "columnOutliers": [], + "values": [ + 4.8 + ], + "nonOutlierValues": [ + 4.8 + ] + }, + { + "columnCategory": "2022-12-24", + "columnMax": 4.88, + "columnThirdQuartile": "NaN", + "columnMedian": "4.9", + "columnFirstQuartile": "4.9", + "columnMin": 4.88, + "columnTotal": 4.88, + "columnSd": "NaN", + "columnMean": "4.9", + "columnIqr": "NaN", + "columnLowerBounds": 4.88, + "columnUpperBounds": 4.88, + "columnOutliers": [], + "values": [ + 4.88 + ], + "nonOutlierValues": [ + 4.88 + ] + }, + { + "columnCategory": "2022-12-31", + "columnMax": 5.21, + "columnThirdQuartile": "NaN", + "columnMedian": "5.2", + "columnFirstQuartile": "5.2", + "columnMin": 5.21, + "columnTotal": 5.21, + "columnSd": "NaN", + "columnMean": "5.2", + "columnIqr": "NaN", + "columnLowerBounds": 5.21, + "columnUpperBounds": 5.21, + "columnOutliers": [], + "values": [ + 5.21 + ], + "nonOutlierValues": [ + 5.21 + ] + }, + { + "columnCategory": "2023-01-07", + "columnMax": 5.64, + "columnThirdQuartile": "NaN", + "columnMedian": "5.6", + "columnFirstQuartile": "5.6", + "columnMin": 5.64, + "columnTotal": 5.64, + "columnSd": "NaN", + "columnMean": "5.6", + "columnIqr": "NaN", + "columnLowerBounds": 5.64, + "columnUpperBounds": 5.64, + "columnOutliers": [], + "values": [ + 5.64 + ], + "nonOutlierValues": [ + 5.64 + ] + }, + { + "columnCategory": "2023-01-14", + "columnMax": 5.59, + "columnThirdQuartile": "NaN", + "columnMedian": "5.6", + "columnFirstQuartile": "5.6", + "columnMin": 5.59, + "columnTotal": 5.59, + "columnSd": "NaN", + "columnMean": "5.6", + "columnIqr": "NaN", + "columnLowerBounds": 5.59, + "columnUpperBounds": 5.59, + "columnOutliers": [], + "values": [ + 5.59 + ], + "nonOutlierValues": [ + 5.59 + ] + }, + { + "columnCategory": "2023-01-21", + "columnMax": 5.09, + "columnThirdQuartile": "NaN", + "columnMedian": "5.1", + "columnFirstQuartile": "5.1", + "columnMin": 5.09, + "columnTotal": 5.09, + "columnSd": "NaN", + "columnMean": "5.1", + "columnIqr": "NaN", + "columnLowerBounds": 5.09, + "columnUpperBounds": 5.09, + "columnOutliers": [], + "values": [ + 5.09 + ], + "nonOutlierValues": [ + 5.09 + ] + }, + { + "columnCategory": "2023-01-28", + "columnMax": 4.7, + "columnThirdQuartile": "NaN", + "columnMedian": "4.7", + "columnFirstQuartile": "4.7", + "columnMin": 4.7, + "columnTotal": 4.7, + "columnSd": "NaN", + "columnMean": "4.7", + "columnIqr": "NaN", + "columnLowerBounds": 4.7, + "columnUpperBounds": 4.7, + "columnOutliers": [], + "values": [ + 4.7 + ], + "nonOutlierValues": [ + 4.7 + ] + }, + { + "columnCategory": "2023-02-04", + "columnMax": 4.23, + "columnThirdQuartile": "NaN", + "columnMedian": "4.2", + "columnFirstQuartile": "4.2", + "columnMin": 4.23, + "columnTotal": 4.23, + "columnSd": "NaN", + "columnMean": "4.2", + "columnIqr": "NaN", + "columnLowerBounds": 4.23, + "columnUpperBounds": 4.23, + "columnOutliers": [], + "values": [ + 4.23 + ], + "nonOutlierValues": [ + 4.23 + ] + }, + { + "columnCategory": "2023-02-11", + "columnMax": 3.77, + "columnThirdQuartile": "NaN", + "columnMedian": "3.8", + "columnFirstQuartile": "3.8", + "columnMin": 3.77, + "columnTotal": 3.77, + "columnSd": "NaN", + "columnMean": "3.8", + "columnIqr": "NaN", + "columnLowerBounds": 3.77, + "columnUpperBounds": 3.77, + "columnOutliers": [], + "values": [ + 3.77 + ], + "nonOutlierValues": [ + 3.77 + ] + }, + { + "columnCategory": "2023-02-18", + "columnMax": 3.43, + "columnThirdQuartile": "NaN", + "columnMedian": "3.4", + "columnFirstQuartile": "3.4", + "columnMin": 3.43, + "columnTotal": 3.43, + "columnSd": "NaN", + "columnMean": "3.4", + "columnIqr": "NaN", + "columnLowerBounds": 3.43, + "columnUpperBounds": 3.43, + "columnOutliers": [], + "values": [ + 3.43 + ], + "nonOutlierValues": [ + 3.43 + ] + }, + { + "columnCategory": "2023-02-25", + "columnMax": 3.5, + "columnThirdQuartile": "NaN", + "columnMedian": "3.5", + "columnFirstQuartile": "3.5", + "columnMin": 3.5, + "columnTotal": 3.5, + "columnSd": "NaN", + "columnMean": "3.5", + "columnIqr": "NaN", + "columnLowerBounds": 3.5, + "columnUpperBounds": 3.5, + "columnOutliers": [], + "values": [ + 3.5 + ], + "nonOutlierValues": [ + 3.5 + ] + }, + { + "columnCategory": "2023-03-04", + "columnMax": 3.27, + "columnThirdQuartile": "NaN", + "columnMedian": "3.3", + "columnFirstQuartile": "3.3", + "columnMin": 3.27, + "columnTotal": 3.27, + "columnSd": "NaN", + "columnMean": "3.3", + "columnIqr": "NaN", + "columnLowerBounds": 3.27, + "columnUpperBounds": 3.27, + "columnOutliers": [], + "values": [ + 3.27 + ], + "nonOutlierValues": [ + 3.27 + ] + }, + { + "columnCategory": "2023-03-11", + "columnMax": 3.08, + "columnThirdQuartile": "NaN", + "columnMedian": "3.1", + "columnFirstQuartile": "3.1", + "columnMin": 3.08, + "columnTotal": 3.08, + "columnSd": "NaN", + "columnMean": "3.1", + "columnIqr": "NaN", + "columnLowerBounds": 3.08, + "columnUpperBounds": 3.08, + "columnOutliers": [], + "values": [ + 3.08 + ], + "nonOutlierValues": [ + 3.08 + ] + }, + { + "columnCategory": "2023-03-18", + "columnMax": 2.91, + "columnThirdQuartile": "NaN", + "columnMedian": "2.9", + "columnFirstQuartile": "2.9", + "columnMin": 2.91, + "columnTotal": 2.91, + "columnSd": "NaN", + "columnMean": "2.9", + "columnIqr": "NaN", + "columnLowerBounds": 2.91, + "columnUpperBounds": 2.91, + "columnOutliers": [], + "values": [ + 2.91 + ], + "nonOutlierValues": [ + 2.91 + ] + }, + { + "columnCategory": "2023-03-25", + "columnMax": 2.78, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.78, + "columnTotal": 2.78, + "columnSd": "NaN", + "columnMean": "2.8", + "columnIqr": "NaN", + "columnLowerBounds": 2.78, + "columnUpperBounds": 2.78, + "columnOutliers": [], + "values": [ + 2.78 + ], + "nonOutlierValues": [ + 2.78 + ] + }, + { + "columnCategory": "2023-04-01", + "columnMax": 2.43, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.43, + "columnTotal": 2.43, + "columnSd": "NaN", + "columnMean": "2.4", + "columnIqr": "NaN", + "columnLowerBounds": 2.43, + "columnUpperBounds": 2.43, + "columnOutliers": [], + "values": [ + 2.43 + ], + "nonOutlierValues": [ + 2.43 + ] + }, + { + "columnCategory": "2023-04-08", + "columnMax": 2.35, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.35, + "columnTotal": 2.35, + "columnSd": "NaN", + "columnMean": "2.4", + "columnIqr": "NaN", + "columnLowerBounds": 2.35, + "columnUpperBounds": 2.35, + "columnOutliers": [], + "values": [ + 2.35 + ], + "nonOutlierValues": [ + 2.35 + ] + }, + { + "columnCategory": "2023-04-15", + "columnMax": 2.08, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.08, + "columnTotal": 2.08, + "columnSd": "NaN", + "columnMean": "2.1", + "columnIqr": "NaN", + "columnLowerBounds": 2.08, + "columnUpperBounds": 2.08, + "columnOutliers": [], + "values": [ + 2.08 + ], + "nonOutlierValues": [ + 2.08 + ] + }, + { + "columnCategory": "2023-04-22", + "columnMax": 2.06, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.06, + "columnTotal": 2.06, + "columnSd": "NaN", + "columnMean": "2.1", + "columnIqr": "NaN", + "columnLowerBounds": 2.06, + "columnUpperBounds": 2.06, + "columnOutliers": [], + "values": [ + 2.06 + ], + "nonOutlierValues": [ + 2.06 + ] + }, + { + "columnCategory": "2023-04-29", + "columnMax": 1.79, + "columnThirdQuartile": "NaN", + "columnMedian": "1.8", + "columnFirstQuartile": "1.8", + "columnMin": 1.79, + "columnTotal": 1.79, + "columnSd": "NaN", + "columnMean": "1.8", + "columnIqr": "NaN", + "columnLowerBounds": 1.79, + "columnUpperBounds": 1.79, + "columnOutliers": [], + "values": [ + 1.79 + ], + "nonOutlierValues": [ + 1.79 + ] + }, + { + "columnCategory": "2023-05-06", + "columnMax": 1.65, + "columnThirdQuartile": "NaN", + "columnMedian": "1.6", + "columnFirstQuartile": "1.6", + "columnMin": 1.65, + "columnTotal": 1.65, + "columnSd": "NaN", + "columnMean": "1.6", + "columnIqr": "NaN", + "columnLowerBounds": 1.65, + "columnUpperBounds": 1.65, + "columnOutliers": [], + "values": [ + 1.65 + ], + "nonOutlierValues": [ + 1.65 + ] + }, + { + "columnCategory": "2023-05-13", + "columnMax": 1.47, + "columnThirdQuartile": "NaN", + "columnMedian": "1.5", + "columnFirstQuartile": "1.5", + "columnMin": 1.47, + "columnTotal": 1.47, + "columnSd": "NaN", + "columnMean": "1.5", + "columnIqr": "NaN", + "columnLowerBounds": 1.47, + "columnUpperBounds": 1.47, + "columnOutliers": [], + "values": [ + 1.47 + ], + "nonOutlierValues": [ + 1.47 + ] + }, + { + "columnCategory": "2023-05-20", + "columnMax": 1.35, + "columnThirdQuartile": "NaN", + "columnMedian": "1.4", + "columnFirstQuartile": "1.4", + "columnMin": 1.35, + "columnTotal": 1.35, + "columnSd": "NaN", + "columnMean": "1.4", + "columnIqr": "NaN", + "columnLowerBounds": 1.35, + "columnUpperBounds": 1.35, + "columnOutliers": [], + "values": [ + 1.35 + ], + "nonOutlierValues": [ + 1.35 + ] + }, + { + "columnCategory": "2023-05-27", + "columnMax": 1.35, + "columnThirdQuartile": "NaN", + "columnMedian": "1.4", + "columnFirstQuartile": "1.4", + "columnMin": 1.35, + "columnTotal": 1.35, + "columnSd": "NaN", + "columnMean": "1.4", + "columnIqr": "NaN", + "columnLowerBounds": 1.35, + "columnUpperBounds": 1.35, + "columnOutliers": [], + "values": [ + 1.35 + ], + "nonOutlierValues": [ + 1.35 + ] + }, + { + "columnCategory": "2023-06-03", + "columnMax": 1.23, + "columnThirdQuartile": "NaN", + "columnMedian": "1.2", + "columnFirstQuartile": "1.2", + "columnMin": 1.23, + "columnTotal": 1.23, + "columnSd": "NaN", + "columnMean": "1.2", + "columnIqr": "NaN", + "columnLowerBounds": 1.23, + "columnUpperBounds": 1.23, + "columnOutliers": [], + "values": [ + 1.23 + ], + "nonOutlierValues": [ + 1.23 + ] + }, + { + "columnCategory": "2023-06-10", + "columnMax": 1.14, + "columnThirdQuartile": "NaN", + "columnMedian": "1.1", + "columnFirstQuartile": "1.1", + "columnMin": 1.14, + "columnTotal": 1.14, + "columnSd": "NaN", + "columnMean": "1.1", + "columnIqr": "NaN", + "columnLowerBounds": 1.14, + "columnUpperBounds": 1.14, + "columnOutliers": [], + "values": [ + 1.14 + ], + "nonOutlierValues": [ + 1.14 + ] + }, + { + "columnCategory": "2023-06-17", + "columnMax": 1.1, + "columnThirdQuartile": "NaN", + "columnMedian": "1.1", + "columnFirstQuartile": "1.1", + "columnMin": 1.1, + "columnTotal": 1.1, + "columnSd": "NaN", + "columnMean": "1.1", + "columnIqr": "NaN", + "columnLowerBounds": 1.1, + "columnUpperBounds": 1.1, + "columnOutliers": [], + "values": [ + 1.1 + ], + "nonOutlierValues": [ + 1.1 + ] + }, + { + "columnCategory": "2023-06-24", + "columnMax": 1.04, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 1.04, + "columnTotal": 1.04, + "columnSd": "NaN", + "columnMean": "1.0", + "columnIqr": "NaN", + "columnLowerBounds": 1.04, + "columnUpperBounds": 1.04, + "columnOutliers": [], + "values": [ + 1.04 + ], + "nonOutlierValues": [ + 1.04 + ] + }, + { + "columnCategory": "2023-07-01", + "columnMax": 0.99, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 0.99, + "columnTotal": 0.99, + "columnSd": "NaN", + "columnMean": "1.0", + "columnIqr": "NaN", + "columnLowerBounds": 0.99, + "columnUpperBounds": 0.99, + "columnOutliers": [], + "values": [ + 0.99 + ], + "nonOutlierValues": [ + 0.99 + ] + }, + { + "columnCategory": "2023-07-08", + "columnMax": 0.88, + "columnThirdQuartile": "NaN", + "columnMedian": "0.9", + "columnFirstQuartile": "0.9", + "columnMin": 0.88, + "columnTotal": 0.88, + "columnSd": "NaN", + "columnMean": "0.9", + "columnIqr": "NaN", + "columnLowerBounds": 0.88, + "columnUpperBounds": 0.88, + "columnOutliers": [], + "values": [ + 0.88 + ], + "nonOutlierValues": [ + 0.88 + ] + }, + { + "columnCategory": "2023-07-15", + "columnMax": 0.93, + "columnThirdQuartile": "NaN", + "columnMedian": "0.9", + "columnFirstQuartile": "0.9", + "columnMin": 0.93, + "columnTotal": 0.93, + "columnSd": "NaN", + "columnMean": "0.9", + "columnIqr": "NaN", + "columnLowerBounds": 0.93, + "columnUpperBounds": 0.93, + "columnOutliers": [], + "values": [ + 0.93 + ], + "nonOutlierValues": [ + 0.93 + ] + }, + { + "columnCategory": "2023-07-22", + "columnMax": 0.98, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 0.98, + "columnTotal": 0.98, + "columnSd": "NaN", + "columnMean": "1.0", + "columnIqr": "NaN", + "columnLowerBounds": 0.98, + "columnUpperBounds": 0.98, + "columnOutliers": [], + "values": [ + 0.98 + ], + "nonOutlierValues": [ + 0.98 + ] + }, + { + "columnCategory": "2023-07-29", + "columnMax": 0.99, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 0.99, + "columnTotal": 0.99, + "columnSd": "NaN", + "columnMean": "1.0", + "columnIqr": "NaN", + "columnLowerBounds": 0.99, + "columnUpperBounds": 0.99, + "columnOutliers": [], + "values": [ + 0.99 + ], + "nonOutlierValues": [ + 0.99 + ] + }, + { + "columnCategory": "2023-08-05", + "columnMax": 1.21, + "columnThirdQuartile": "NaN", + "columnMedian": "1.2", + "columnFirstQuartile": "1.2", + "columnMin": 1.21, + "columnTotal": 1.21, + "columnSd": "NaN", + "columnMean": "1.2", + "columnIqr": "NaN", + "columnLowerBounds": 1.21, + "columnUpperBounds": 1.21, + "columnOutliers": [], + "values": [ + 1.21 + ], + "nonOutlierValues": [ + 1.21 + ] + }, + { + "columnCategory": "2023-08-12", + "columnMax": 1.33, + "columnThirdQuartile": "NaN", + "columnMedian": "1.3", + "columnFirstQuartile": "1.3", + "columnMin": 1.33, + "columnTotal": 1.33, + "columnSd": "NaN", + "columnMean": "1.3", + "columnIqr": "NaN", + "columnLowerBounds": 1.33, + "columnUpperBounds": 1.33, + "columnOutliers": [], + "values": [ + 1.33 + ], + "nonOutlierValues": [ + 1.33 + ] + }, + { + "columnCategory": "2023-08-19", + "columnMax": 1.64, + "columnThirdQuartile": "NaN", + "columnMedian": "1.6", + "columnFirstQuartile": "1.6", + "columnMin": 1.64, + "columnTotal": 1.64, + "columnSd": "NaN", + "columnMean": "1.6", + "columnIqr": "NaN", + "columnLowerBounds": 1.64, + "columnUpperBounds": 1.64, + "columnOutliers": [], + "values": [ + 1.64 + ], + "nonOutlierValues": [ + 1.64 + ] + }, + { + "columnCategory": "2023-08-26", + "columnMax": 1.9, + "columnThirdQuartile": "NaN", + "columnMedian": "1.9", + "columnFirstQuartile": "1.9", + "columnMin": 1.9, + "columnTotal": 1.9, + "columnSd": "NaN", + "columnMean": "1.9", + "columnIqr": "NaN", + "columnLowerBounds": 1.9, + "columnUpperBounds": 1.9, + "columnOutliers": [], + "values": [ + 1.9 + ], + "nonOutlierValues": [ + 1.9 + ] + }, + { + "columnCategory": "2023-09-02", + "columnMax": 2.13, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.13, + "columnTotal": 2.13, + "columnSd": "NaN", + "columnMean": "2.1", + "columnIqr": "NaN", + "columnLowerBounds": 2.13, + "columnUpperBounds": 2.13, + "columnOutliers": [], + "values": [ + 2.13 + ], + "nonOutlierValues": [ + 2.13 + ] + }, + { + "columnCategory": "2023-09-09", + "columnMax": 2.3, + "columnThirdQuartile": "NaN", + "columnMedian": "2.3", + "columnFirstQuartile": "2.3", + "columnMin": 2.3, + "columnTotal": 2.3, + "columnSd": "NaN", + "columnMean": "2.3", + "columnIqr": "NaN", + "columnLowerBounds": 2.3, + "columnUpperBounds": 2.3, + "columnOutliers": [], + "values": [ + 2.3 + ], + "nonOutlierValues": [ + 2.3 + ] + }, + { + "columnCategory": "2023-09-16", + "columnMax": 2.5, + "columnThirdQuartile": "NaN", + "columnMedian": "2.5", + "columnFirstQuartile": "2.5", + "columnMin": 2.5, + "columnTotal": 2.5, + "columnSd": "NaN", + "columnMean": "2.5", + "columnIqr": "NaN", + "columnLowerBounds": 2.5, + "columnUpperBounds": 2.5, + "columnOutliers": [], + "values": [ + 2.5 + ], + "nonOutlierValues": [ + 2.5 + ] + }, + { + "columnCategory": "2023-09-23", + "columnMax": 2.51, + "columnThirdQuartile": "NaN", + "columnMedian": "2.5", + "columnFirstQuartile": "2.5", + "columnMin": 2.51, + "columnTotal": 2.51, + "columnSd": "NaN", + "columnMean": "2.5", + "columnIqr": "NaN", + "columnLowerBounds": 2.51, + "columnUpperBounds": 2.51, + "columnOutliers": [], + "values": [ + 2.51 + ], + "nonOutlierValues": [ + 2.51 + ] + }, + { + "columnCategory": "2023-09-30", + "columnMax": 2.55, + "columnThirdQuartile": "NaN", + "columnMedian": "2.5", + "columnFirstQuartile": "2.5", + "columnMin": 2.55, + "columnTotal": 2.55, + "columnSd": "NaN", + "columnMean": "2.5", + "columnIqr": "NaN", + "columnLowerBounds": 2.55, + "columnUpperBounds": 2.55, + "columnOutliers": [], + "values": [ + 2.55 + ], + "nonOutlierValues": [ + 2.55 + ] + }, + { + "columnCategory": "2023-10-07", + "columnMax": 2.42, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.42, + "columnTotal": 2.42, + "columnSd": "NaN", + "columnMean": "2.4", + "columnIqr": "NaN", + "columnLowerBounds": 2.42, + "columnUpperBounds": 2.42, + "columnOutliers": [], + "values": [ + 2.42 + ], + "nonOutlierValues": [ + 2.42 + ] + }, + { + "columnCategory": "2023-10-14", + "columnMax": 2.26, + "columnThirdQuartile": "NaN", + "columnMedian": "2.3", + "columnFirstQuartile": "2.3", + "columnMin": 2.26, + "columnTotal": 2.26, + "columnSd": "NaN", + "columnMean": "2.3", + "columnIqr": "NaN", + "columnLowerBounds": 2.26, + "columnUpperBounds": 2.26, + "columnOutliers": [], + "values": [ + 2.26 + ], + "nonOutlierValues": [ + 2.26 + ] + }, + { + "columnCategory": "2023-10-21", + "columnMax": 2.39, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.39, + "columnTotal": 2.39, + "columnSd": "NaN", + "columnMean": "2.4", + "columnIqr": "NaN", + "columnLowerBounds": 2.39, + "columnUpperBounds": 2.39, + "columnOutliers": [], + "values": [ + 2.39 + ], + "nonOutlierValues": [ + 2.39 + ] + }, + { + "columnCategory": "2023-10-28", + "columnMax": 2.22, + "columnThirdQuartile": "NaN", + "columnMedian": "2.2", + "columnFirstQuartile": "2.2", + "columnMin": 2.22, + "columnTotal": 2.22, + "columnSd": "NaN", + "columnMean": "2.2", + "columnIqr": "NaN", + "columnLowerBounds": 2.22, + "columnUpperBounds": 2.22, + "columnOutliers": [], + "values": [ + 2.22 + ], + "nonOutlierValues": [ + 2.22 + ] + }, + { + "columnCategory": "2023-11-04", + "columnMax": 2.12, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.12, + "columnTotal": 2.12, + "columnSd": "NaN", + "columnMean": "2.1", + "columnIqr": "NaN", + "columnLowerBounds": 2.12, + "columnUpperBounds": 2.12, + "columnOutliers": [], + "values": [ + 2.12 + ], + "nonOutlierValues": [ + 2.12 + ] + }, + { + "columnCategory": "2023-11-11", + "columnMax": 2.31, + "columnThirdQuartile": "NaN", + "columnMedian": "2.3", + "columnFirstQuartile": "2.3", + "columnMin": 2.31, + "columnTotal": 2.31, + "columnSd": "NaN", + "columnMean": "2.3", + "columnIqr": "NaN", + "columnLowerBounds": 2.31, + "columnUpperBounds": 2.31, + "columnOutliers": [], + "values": [ + 2.31 + ], + "nonOutlierValues": [ + 2.31 + ] + }, + { + "columnCategory": "2023-11-18", + "columnMax": 2.4, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.4, + "columnTotal": 2.4, + "columnSd": "NaN", + "columnMean": "2.4", + "columnIqr": "NaN", + "columnLowerBounds": 2.4, + "columnUpperBounds": 2.4, + "columnOutliers": [], + "values": [ + 2.4 + ], + "nonOutlierValues": [ + 2.4 + ] + }, + { + "columnCategory": "2023-11-25", + "columnMax": 2.4, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.4, + "columnTotal": 2.4, + "columnSd": "NaN", + "columnMean": "2.4", + "columnIqr": "NaN", + "columnLowerBounds": 2.4, + "columnUpperBounds": 2.4, + "columnOutliers": [], + "values": [ + 2.4 + ], + "nonOutlierValues": [ + 2.4 + ] + }, + { + "columnCategory": "2023-12-02", + "columnMax": 2.79, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.79, + "columnTotal": 2.79, + "columnSd": "NaN", + "columnMean": "2.8", + "columnIqr": "NaN", + "columnLowerBounds": 2.79, + "columnUpperBounds": 2.79, + "columnOutliers": [], + "values": [ + 2.79 + ], + "nonOutlierValues": [ + 2.79 + ] + }, + { + "columnCategory": "2023-12-09", + "columnMax": 2.84, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.84, + "columnTotal": 2.84, + "columnSd": "NaN", + "columnMean": "2.8", + "columnIqr": "NaN", + "columnLowerBounds": 2.84, + "columnUpperBounds": 2.84, + "columnOutliers": [], + "values": [ + 2.84 + ], + "nonOutlierValues": [ + 2.84 + ] + }, + { + "columnCategory": "2023-12-16", + "columnMax": 2.94, + "columnThirdQuartile": "NaN", + "columnMedian": "2.9", + "columnFirstQuartile": "2.9", + "columnMin": 2.94, + "columnTotal": 2.94, + "columnSd": "NaN", + "columnMean": "2.9", + "columnIqr": "NaN", + "columnLowerBounds": 2.94, + "columnUpperBounds": 2.94, + "columnOutliers": [], + "values": [ + 2.94 + ], + "nonOutlierValues": [ + 2.94 + ] + }, + { + "columnCategory": "2023-12-23", + "columnMax": 3.01, + "columnThirdQuartile": "NaN", + "columnMedian": "3.0", + "columnFirstQuartile": "3.0", + "columnMin": 3.01, + "columnTotal": 3.01, + "columnSd": "NaN", + "columnMean": "3.0", + "columnIqr": "NaN", + "columnLowerBounds": 3.01, + "columnUpperBounds": 3.01, + "columnOutliers": [], + "values": [ + 3.01 + ], + "nonOutlierValues": [ + 3.01 + ] + }, + { + "columnCategory": "2023-12-30", + "columnMax": 3.4, + "columnThirdQuartile": "NaN", + "columnMedian": "3.4", + "columnFirstQuartile": "3.4", + "columnMin": 3.4, + "columnTotal": 3.4, + "columnSd": "NaN", + "columnMean": "3.4", + "columnIqr": "NaN", + "columnLowerBounds": 3.4, + "columnUpperBounds": 3.4, + "columnOutliers": [], + "values": [ + 3.4 + ], + "nonOutlierValues": [ + 3.4 + ] + }, + { + "columnCategory": "2024-01-06", + "columnMax": 3.71, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.71, + "columnTotal": 3.71, + "columnSd": "NaN", + "columnMean": "3.7", + "columnIqr": "NaN", + "columnLowerBounds": 3.71, + "columnUpperBounds": 3.71, + "columnOutliers": [], + "values": [ + 3.71 + ], + "nonOutlierValues": [ + 3.71 + ] + }, + { + "columnCategory": "2024-01-13", + "columnMax": 3.81, + "columnThirdQuartile": "NaN", + "columnMedian": "3.8", + "columnFirstQuartile": "3.8", + "columnMin": 3.81, + "columnTotal": 3.81, + "columnSd": "NaN", + "columnMean": "3.8", + "columnIqr": "NaN", + "columnLowerBounds": 3.81, + "columnUpperBounds": 3.81, + "columnOutliers": [], + "values": [ + 3.81 + ], + "nonOutlierValues": [ + 3.81 + ] + }, + { + "columnCategory": "2024-01-20", + "columnMax": 3.54, + "columnThirdQuartile": "NaN", + "columnMedian": "3.5", + "columnFirstQuartile": "3.5", + "columnMin": 3.54, + "columnTotal": 3.54, + "columnSd": "NaN", + "columnMean": "3.5", + "columnIqr": "NaN", + "columnLowerBounds": 3.54, + "columnUpperBounds": 3.54, + "columnOutliers": [], + "values": [ + 3.54 + ], + "nonOutlierValues": [ + 3.54 + ] + }, + { + "columnCategory": "2024-01-27", + "columnMax": 3.22, + "columnThirdQuartile": "NaN", + "columnMedian": "3.2", + "columnFirstQuartile": "3.2", + "columnMin": 3.22, + "columnTotal": 3.22, + "columnSd": "NaN", + "columnMean": "3.2", + "columnIqr": "NaN", + "columnLowerBounds": 3.22, + "columnUpperBounds": 3.22, + "columnOutliers": [], + "values": [ + 3.22 + ], + "nonOutlierValues": [ + 3.22 + ] + }, + { + "columnCategory": "2024-02-03", + "columnMax": 2.79, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.79, + "columnTotal": 2.79, + "columnSd": "NaN", + "columnMean": "2.8", + "columnIqr": "NaN", + "columnLowerBounds": 2.79, + "columnUpperBounds": 2.79, + "columnOutliers": [], + "values": [ + 2.79 + ], + "nonOutlierValues": [ + 2.79 + ] + }, + { + "columnCategory": "2024-02-10", + "columnMax": 2.63, + "columnThirdQuartile": "NaN", + "columnMedian": "2.6", + "columnFirstQuartile": "2.6", + "columnMin": 2.63, + "columnTotal": 2.63, + "columnSd": "NaN", + "columnMean": "2.6", + "columnIqr": "NaN", + "columnLowerBounds": 2.63, + "columnUpperBounds": 2.63, + "columnOutliers": [], + "values": [ + 2.63 + ], + "nonOutlierValues": [ + 2.63 + ] + }, + { + "columnCategory": "2024-02-17", + "columnMax": 2.23, + "columnThirdQuartile": "NaN", + "columnMedian": "2.2", + "columnFirstQuartile": "2.2", + "columnMin": 2.23, + "columnTotal": 2.23, + "columnSd": "NaN", + "columnMean": "2.2", + "columnIqr": "NaN", + "columnLowerBounds": 2.23, + "columnUpperBounds": 2.23, + "columnOutliers": [], + "values": [ + 2.23 + ], + "nonOutlierValues": [ + 2.23 + ] + }, + { + "columnCategory": "2024-02-24", + "columnMax": 2.2, + "columnThirdQuartile": "NaN", + "columnMedian": "2.2", + "columnFirstQuartile": "2.2", + "columnMin": 2.2, + "columnTotal": 2.2, + "columnSd": "NaN", + "columnMean": "2.2", + "columnIqr": "NaN", + "columnLowerBounds": 2.2, + "columnUpperBounds": 2.2, + "columnOutliers": [], + "values": [ + 2.2 + ], + "nonOutlierValues": [ + 2.2 + ] + } + ], + "borders": "true", + "plotOutlierValues": false, + "plotNonOutlierValues": true, + "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" + }, + "firstQuartilePercentage": 25, + "thirdQuartilePercentage": 75, + "boxWidthPercentage": 40, + "legend": { + "showHowToReadText": false, + "howToReadText": "" + }, + "allValues": [ + 4.06, + 3.68, + 3.6, + 3.66, + 3.74, + 3.68, + 3.61, + 3.66, + 3.87, + 3.94, + 4.53, + 4.8, + 4.88, + 5.21, + 5.64, + 5.59, + 5.09, + 4.7, + 4.23, + 3.77, + 3.43, + 3.5, + 3.27, + 3.08, + 2.91, + 2.78, + 2.43, + 2.35, + 2.08, + 2.06, + 1.79, + 1.65, + 1.47, + 1.35, + 1.35, + 1.23, + 1.14, + 1.1, + 1.04, + 0.99, + 0.88, + 0.93, + 0.98, + 0.99, + 1.21, + 1.33, + 1.64, + 1.9, + 2.13, + 2.3, + 2.5, + 2.51, + 2.55, + 2.42, + 2.26, + 2.39, + 2.22, + 2.12, + 2.31, + 2.4, + 2.4, + 2.79, + 2.84, + 2.94, + 3.01, + 3.4, + 3.71, + 3.81, + 3.54, + 3.22, + 2.79, + 2.63, + 2.23, + 2.2 + ], + "categories": [ + "2022-10-01", + "2022-10-08", + "2022-10-15", + "2022-10-22", + "2022-10-29", + "2022-11-05", + "2022-11-12", + "2022-11-19", + "2022-11-26", + "2022-12-03", + "2022-12-10", + "2022-12-17", + "2022-12-24", + "2022-12-31", + "2023-01-07", + "2023-01-14", + "2023-01-21", + "2023-01-28", + "2023-02-04", + "2023-02-11", + "2023-02-18", + "2023-02-25", + "2023-03-04", + "2023-03-11", + "2023-03-18", + "2023-03-25", + "2023-04-01", + "2023-04-08", + "2023-04-15", + "2023-04-22", + "2023-04-29", + "2023-05-06", + "2023-05-13", + "2023-05-20", + "2023-05-27", + "2023-06-03", + "2023-06-10", + "2023-06-17", + "2023-06-24", + "2023-07-01", + "2023-07-08", + "2023-07-15", + "2023-07-22", + "2023-07-29", + "2023-08-05", + "2023-08-12", + "2023-08-19", + "2023-08-26", + "2023-09-02", + "2023-09-09", + "2023-09-16", + "2023-09-23", + "2023-09-30", + "2023-10-07", + "2023-10-14", + "2023-10-21", + "2023-10-28", + "2023-11-04", + "2023-11-11", + "2023-11-18", + "2023-11-25", + "2023-12-02", + "2023-12-09", + "2023-12-16", + "2023-12-23", + "2023-12-30", + "2024-01-06", + "2024-01-13", + "2024-01-20", + "2024-01-27", + "2024-02-03", + "2024-02-10", + "2024-02-17", + "2024-02-24" + ], + "tableData": [ + { + "columnCategory": "2022-10-01", + "columnMax": 4.06, + "columnThirdQuartile": "NaN", + "columnMedian": "4.1", + "columnFirstQuartile": "4.1", + "columnMin": 4.06, + "columnTotal": 4.06, + "columnSd": "NaN", + "columnMean": "4.1", + "columnOutliers": [], + "values": [ + 4.06 + ] + }, + { + "columnCategory": "2022-10-08", + "columnMax": 3.68, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.68, + "columnTotal": 3.68, + "columnSd": "NaN", + "columnMean": "3.7", + "columnOutliers": [], + "values": [ + 3.68 + ] + }, + { + "columnCategory": "2022-10-15", + "columnMax": 3.6, + "columnThirdQuartile": "NaN", + "columnMedian": "3.6", + "columnFirstQuartile": "3.6", + "columnMin": 3.6, + "columnTotal": 3.6, + "columnSd": "NaN", + "columnMean": "3.6", + "columnOutliers": [], + "values": [ + 3.6 + ] + }, + { + "columnCategory": "2022-10-22", + "columnMax": 3.66, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.66, + "columnTotal": 3.66, + "columnSd": "NaN", + "columnMean": "3.7", + "columnOutliers": [], + "values": [ + 3.66 + ] + }, + { + "columnCategory": "2022-10-29", + "columnMax": 3.74, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.74, + "columnTotal": 3.74, + "columnSd": "NaN", + "columnMean": "3.7", + "columnOutliers": [], + "values": [ + 3.74 + ] + }, + { + "columnCategory": "2022-11-05", + "columnMax": 3.68, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.68, + "columnTotal": 3.68, + "columnSd": "NaN", + "columnMean": "3.7", + "columnOutliers": [], + "values": [ + 3.68 + ] + }, + { + "columnCategory": "2022-11-12", + "columnMax": 3.61, + "columnThirdQuartile": "NaN", + "columnMedian": "3.6", + "columnFirstQuartile": "3.6", + "columnMin": 3.61, + "columnTotal": 3.61, + "columnSd": "NaN", + "columnMean": "3.6", + "columnOutliers": [], + "values": [ + 3.61 + ] + }, + { + "columnCategory": "2022-11-19", + "columnMax": 3.66, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.66, + "columnTotal": 3.66, + "columnSd": "NaN", + "columnMean": "3.7", + "columnOutliers": [], + "values": [ + 3.66 + ] + }, + { + "columnCategory": "2022-11-26", + "columnMax": 3.87, + "columnThirdQuartile": "NaN", + "columnMedian": "3.9", + "columnFirstQuartile": "3.9", + "columnMin": 3.87, + "columnTotal": 3.87, + "columnSd": "NaN", + "columnMean": "3.9", + "columnOutliers": [], + "values": [ + 3.87 + ] + }, + { + "columnCategory": "2022-12-03", + "columnMax": 3.94, + "columnThirdQuartile": "NaN", + "columnMedian": "3.9", + "columnFirstQuartile": "3.9", + "columnMin": 3.94, + "columnTotal": 3.94, + "columnSd": "NaN", + "columnMean": "3.9", + "columnOutliers": [], + "values": [ + 3.94 + ] + }, + { + "columnCategory": "2022-12-10", + "columnMax": 4.53, + "columnThirdQuartile": "NaN", + "columnMedian": "4.5", + "columnFirstQuartile": "4.5", + "columnMin": 4.53, + "columnTotal": 4.53, + "columnSd": "NaN", + "columnMean": "4.5", + "columnOutliers": [], + "values": [ + 4.53 + ] + }, + { + "columnCategory": "2022-12-17", + "columnMax": 4.8, + "columnThirdQuartile": "NaN", + "columnMedian": "4.8", + "columnFirstQuartile": "4.8", + "columnMin": 4.8, + "columnTotal": 4.8, + "columnSd": "NaN", + "columnMean": "4.8", + "columnOutliers": [], + "values": [ + 4.8 + ] + }, + { + "columnCategory": "2022-12-24", + "columnMax": 4.88, + "columnThirdQuartile": "NaN", + "columnMedian": "4.9", + "columnFirstQuartile": "4.9", + "columnMin": 4.88, + "columnTotal": 4.88, + "columnSd": "NaN", + "columnMean": "4.9", + "columnOutliers": [], + "values": [ + 4.88 + ] + }, + { + "columnCategory": "2022-12-31", + "columnMax": 5.21, + "columnThirdQuartile": "NaN", + "columnMedian": "5.2", + "columnFirstQuartile": "5.2", + "columnMin": 5.21, + "columnTotal": 5.21, + "columnSd": "NaN", + "columnMean": "5.2", + "columnOutliers": [], + "values": [ + 5.21 + ] + }, + { + "columnCategory": "2023-01-07", + "columnMax": 5.64, + "columnThirdQuartile": "NaN", + "columnMedian": "5.6", + "columnFirstQuartile": "5.6", + "columnMin": 5.64, + "columnTotal": 5.64, + "columnSd": "NaN", + "columnMean": "5.6", + "columnOutliers": [], + "values": [ + 5.64 + ] + }, + { + "columnCategory": "2023-01-14", + "columnMax": 5.59, + "columnThirdQuartile": "NaN", + "columnMedian": "5.6", + "columnFirstQuartile": "5.6", + "columnMin": 5.59, + "columnTotal": 5.59, + "columnSd": "NaN", + "columnMean": "5.6", + "columnOutliers": [], + "values": [ + 5.59 + ] + }, + { + "columnCategory": "2023-01-21", + "columnMax": 5.09, + "columnThirdQuartile": "NaN", + "columnMedian": "5.1", + "columnFirstQuartile": "5.1", + "columnMin": 5.09, + "columnTotal": 5.09, + "columnSd": "NaN", + "columnMean": "5.1", + "columnOutliers": [], + "values": [ + 5.09 + ] + }, + { + "columnCategory": "2023-01-28", + "columnMax": 4.7, + "columnThirdQuartile": "NaN", + "columnMedian": "4.7", + "columnFirstQuartile": "4.7", + "columnMin": 4.7, + "columnTotal": 4.7, + "columnSd": "NaN", + "columnMean": "4.7", + "columnOutliers": [], + "values": [ + 4.7 + ] + }, + { + "columnCategory": "2023-02-04", + "columnMax": 4.23, + "columnThirdQuartile": "NaN", + "columnMedian": "4.2", + "columnFirstQuartile": "4.2", + "columnMin": 4.23, + "columnTotal": 4.23, + "columnSd": "NaN", + "columnMean": "4.2", + "columnOutliers": [], + "values": [ + 4.23 + ] + }, + { + "columnCategory": "2023-02-11", + "columnMax": 3.77, + "columnThirdQuartile": "NaN", + "columnMedian": "3.8", + "columnFirstQuartile": "3.8", + "columnMin": 3.77, + "columnTotal": 3.77, + "columnSd": "NaN", + "columnMean": "3.8", + "columnOutliers": [], + "values": [ + 3.77 + ] + }, + { + "columnCategory": "2023-02-18", + "columnMax": 3.43, + "columnThirdQuartile": "NaN", + "columnMedian": "3.4", + "columnFirstQuartile": "3.4", + "columnMin": 3.43, + "columnTotal": 3.43, + "columnSd": "NaN", + "columnMean": "3.4", + "columnOutliers": [], + "values": [ + 3.43 + ] + }, + { + "columnCategory": "2023-02-25", + "columnMax": 3.5, + "columnThirdQuartile": "NaN", + "columnMedian": "3.5", + "columnFirstQuartile": "3.5", + "columnMin": 3.5, + "columnTotal": 3.5, + "columnSd": "NaN", + "columnMean": "3.5", + "columnOutliers": [], + "values": [ + 3.5 + ] + }, + { + "columnCategory": "2023-03-04", + "columnMax": 3.27, + "columnThirdQuartile": "NaN", + "columnMedian": "3.3", + "columnFirstQuartile": "3.3", + "columnMin": 3.27, + "columnTotal": 3.27, + "columnSd": "NaN", + "columnMean": "3.3", + "columnOutliers": [], + "values": [ + 3.27 + ] + }, + { + "columnCategory": "2023-03-11", + "columnMax": 3.08, + "columnThirdQuartile": "NaN", + "columnMedian": "3.1", + "columnFirstQuartile": "3.1", + "columnMin": 3.08, + "columnTotal": 3.08, + "columnSd": "NaN", + "columnMean": "3.1", + "columnOutliers": [], + "values": [ + 3.08 + ] + }, + { + "columnCategory": "2023-03-18", + "columnMax": 2.91, + "columnThirdQuartile": "NaN", + "columnMedian": "2.9", + "columnFirstQuartile": "2.9", + "columnMin": 2.91, + "columnTotal": 2.91, + "columnSd": "NaN", + "columnMean": "2.9", + "columnOutliers": [], + "values": [ + 2.91 + ] + }, + { + "columnCategory": "2023-03-25", + "columnMax": 2.78, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.78, + "columnTotal": 2.78, + "columnSd": "NaN", + "columnMean": "2.8", + "columnOutliers": [], + "values": [ + 2.78 + ] + }, + { + "columnCategory": "2023-04-01", + "columnMax": 2.43, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.43, + "columnTotal": 2.43, + "columnSd": "NaN", + "columnMean": "2.4", + "columnOutliers": [], + "values": [ + 2.43 + ] + }, + { + "columnCategory": "2023-04-08", + "columnMax": 2.35, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.35, + "columnTotal": 2.35, + "columnSd": "NaN", + "columnMean": "2.4", + "columnOutliers": [], + "values": [ + 2.35 + ] + }, + { + "columnCategory": "2023-04-15", + "columnMax": 2.08, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.08, + "columnTotal": 2.08, + "columnSd": "NaN", + "columnMean": "2.1", + "columnOutliers": [], + "values": [ + 2.08 + ] + }, + { + "columnCategory": "2023-04-22", + "columnMax": 2.06, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.06, + "columnTotal": 2.06, + "columnSd": "NaN", + "columnMean": "2.1", + "columnOutliers": [], + "values": [ + 2.06 + ] + }, + { + "columnCategory": "2023-04-29", + "columnMax": 1.79, + "columnThirdQuartile": "NaN", + "columnMedian": "1.8", + "columnFirstQuartile": "1.8", + "columnMin": 1.79, + "columnTotal": 1.79, + "columnSd": "NaN", + "columnMean": "1.8", + "columnOutliers": [], + "values": [ + 1.79 + ] + }, + { + "columnCategory": "2023-05-06", + "columnMax": 1.65, + "columnThirdQuartile": "NaN", + "columnMedian": "1.6", + "columnFirstQuartile": "1.6", + "columnMin": 1.65, + "columnTotal": 1.65, + "columnSd": "NaN", + "columnMean": "1.6", + "columnOutliers": [], + "values": [ + 1.65 + ] + }, + { + "columnCategory": "2023-05-13", + "columnMax": 1.47, + "columnThirdQuartile": "NaN", + "columnMedian": "1.5", + "columnFirstQuartile": "1.5", + "columnMin": 1.47, + "columnTotal": 1.47, + "columnSd": "NaN", + "columnMean": "1.5", + "columnOutliers": [], + "values": [ + 1.47 + ] + }, + { + "columnCategory": "2023-05-20", + "columnMax": 1.35, + "columnThirdQuartile": "NaN", + "columnMedian": "1.4", + "columnFirstQuartile": "1.4", + "columnMin": 1.35, + "columnTotal": 1.35, + "columnSd": "NaN", + "columnMean": "1.4", + "columnOutliers": [], + "values": [ + 1.35 + ] + }, + { + "columnCategory": "2023-05-27", + "columnMax": 1.35, + "columnThirdQuartile": "NaN", + "columnMedian": "1.4", + "columnFirstQuartile": "1.4", + "columnMin": 1.35, + "columnTotal": 1.35, + "columnSd": "NaN", + "columnMean": "1.4", + "columnOutliers": [], + "values": [ + 1.35 + ] + }, + { + "columnCategory": "2023-06-03", + "columnMax": 1.23, + "columnThirdQuartile": "NaN", + "columnMedian": "1.2", + "columnFirstQuartile": "1.2", + "columnMin": 1.23, + "columnTotal": 1.23, + "columnSd": "NaN", + "columnMean": "1.2", + "columnOutliers": [], + "values": [ + 1.23 + ] + }, + { + "columnCategory": "2023-06-10", + "columnMax": 1.14, + "columnThirdQuartile": "NaN", + "columnMedian": "1.1", + "columnFirstQuartile": "1.1", + "columnMin": 1.14, + "columnTotal": 1.14, + "columnSd": "NaN", + "columnMean": "1.1", + "columnOutliers": [], + "values": [ + 1.14 + ] + }, + { + "columnCategory": "2023-06-17", + "columnMax": 1.1, + "columnThirdQuartile": "NaN", + "columnMedian": "1.1", + "columnFirstQuartile": "1.1", + "columnMin": 1.1, + "columnTotal": 1.1, + "columnSd": "NaN", + "columnMean": "1.1", + "columnOutliers": [], + "values": [ + 1.1 + ] + }, + { + "columnCategory": "2023-06-24", + "columnMax": 1.04, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 1.04, + "columnTotal": 1.04, + "columnSd": "NaN", + "columnMean": "1.0", + "columnOutliers": [], + "values": [ + 1.04 + ] + }, + { + "columnCategory": "2023-07-01", + "columnMax": 0.99, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 0.99, + "columnTotal": 0.99, + "columnSd": "NaN", + "columnMean": "1.0", + "columnOutliers": [], + "values": [ + 0.99 + ] + }, + { + "columnCategory": "2023-07-08", + "columnMax": 0.88, + "columnThirdQuartile": "NaN", + "columnMedian": "0.9", + "columnFirstQuartile": "0.9", + "columnMin": 0.88, + "columnTotal": 0.88, + "columnSd": "NaN", + "columnMean": "0.9", + "columnOutliers": [], + "values": [ + 0.88 + ] + }, + { + "columnCategory": "2023-07-15", + "columnMax": 0.93, + "columnThirdQuartile": "NaN", + "columnMedian": "0.9", + "columnFirstQuartile": "0.9", + "columnMin": 0.93, + "columnTotal": 0.93, + "columnSd": "NaN", + "columnMean": "0.9", + "columnOutliers": [], + "values": [ + 0.93 + ] + }, + { + "columnCategory": "2023-07-22", + "columnMax": 0.98, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 0.98, + "columnTotal": 0.98, + "columnSd": "NaN", + "columnMean": "1.0", + "columnOutliers": [], + "values": [ + 0.98 + ] + }, + { + "columnCategory": "2023-07-29", + "columnMax": 0.99, + "columnThirdQuartile": "NaN", + "columnMedian": "1.0", + "columnFirstQuartile": "1.0", + "columnMin": 0.99, + "columnTotal": 0.99, + "columnSd": "NaN", + "columnMean": "1.0", + "columnOutliers": [], + "values": [ + 0.99 + ] + }, + { + "columnCategory": "2023-08-05", + "columnMax": 1.21, + "columnThirdQuartile": "NaN", + "columnMedian": "1.2", + "columnFirstQuartile": "1.2", + "columnMin": 1.21, + "columnTotal": 1.21, + "columnSd": "NaN", + "columnMean": "1.2", + "columnOutliers": [], + "values": [ + 1.21 + ] + }, + { + "columnCategory": "2023-08-12", + "columnMax": 1.33, + "columnThirdQuartile": "NaN", + "columnMedian": "1.3", + "columnFirstQuartile": "1.3", + "columnMin": 1.33, + "columnTotal": 1.33, + "columnSd": "NaN", + "columnMean": "1.3", + "columnOutliers": [], + "values": [ + 1.33 + ] + }, + { + "columnCategory": "2023-08-19", + "columnMax": 1.64, + "columnThirdQuartile": "NaN", + "columnMedian": "1.6", + "columnFirstQuartile": "1.6", + "columnMin": 1.64, + "columnTotal": 1.64, + "columnSd": "NaN", + "columnMean": "1.6", + "columnOutliers": [], + "values": [ + 1.64 + ] + }, + { + "columnCategory": "2023-08-26", + "columnMax": 1.9, + "columnThirdQuartile": "NaN", + "columnMedian": "1.9", + "columnFirstQuartile": "1.9", + "columnMin": 1.9, + "columnTotal": 1.9, + "columnSd": "NaN", + "columnMean": "1.9", + "columnOutliers": [], + "values": [ + 1.9 + ] + }, + { + "columnCategory": "2023-09-02", + "columnMax": 2.13, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.13, + "columnTotal": 2.13, + "columnSd": "NaN", + "columnMean": "2.1", + "columnOutliers": [], + "values": [ + 2.13 + ] + }, + { + "columnCategory": "2023-09-09", + "columnMax": 2.3, + "columnThirdQuartile": "NaN", + "columnMedian": "2.3", + "columnFirstQuartile": "2.3", + "columnMin": 2.3, + "columnTotal": 2.3, + "columnSd": "NaN", + "columnMean": "2.3", + "columnOutliers": [], + "values": [ + 2.3 + ] + }, + { + "columnCategory": "2023-09-16", + "columnMax": 2.5, + "columnThirdQuartile": "NaN", + "columnMedian": "2.5", + "columnFirstQuartile": "2.5", + "columnMin": 2.5, + "columnTotal": 2.5, + "columnSd": "NaN", + "columnMean": "2.5", + "columnOutliers": [], + "values": [ + 2.5 + ] + }, + { + "columnCategory": "2023-09-23", + "columnMax": 2.51, + "columnThirdQuartile": "NaN", + "columnMedian": "2.5", + "columnFirstQuartile": "2.5", + "columnMin": 2.51, + "columnTotal": 2.51, + "columnSd": "NaN", + "columnMean": "2.5", + "columnOutliers": [], + "values": [ + 2.51 + ] + }, + { + "columnCategory": "2023-09-30", + "columnMax": 2.55, + "columnThirdQuartile": "NaN", + "columnMedian": "2.5", + "columnFirstQuartile": "2.5", + "columnMin": 2.55, + "columnTotal": 2.55, + "columnSd": "NaN", + "columnMean": "2.5", + "columnOutliers": [], + "values": [ + 2.55 + ] + }, + { + "columnCategory": "2023-10-07", + "columnMax": 2.42, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.42, + "columnTotal": 2.42, + "columnSd": "NaN", + "columnMean": "2.4", + "columnOutliers": [], + "values": [ + 2.42 + ] + }, + { + "columnCategory": "2023-10-14", + "columnMax": 2.26, + "columnThirdQuartile": "NaN", + "columnMedian": "2.3", + "columnFirstQuartile": "2.3", + "columnMin": 2.26, + "columnTotal": 2.26, + "columnSd": "NaN", + "columnMean": "2.3", + "columnOutliers": [], + "values": [ + 2.26 + ] + }, + { + "columnCategory": "2023-10-21", + "columnMax": 2.39, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.39, + "columnTotal": 2.39, + "columnSd": "NaN", + "columnMean": "2.4", + "columnOutliers": [], + "values": [ + 2.39 + ] + }, + { + "columnCategory": "2023-10-28", + "columnMax": 2.22, + "columnThirdQuartile": "NaN", + "columnMedian": "2.2", + "columnFirstQuartile": "2.2", + "columnMin": 2.22, + "columnTotal": 2.22, + "columnSd": "NaN", + "columnMean": "2.2", + "columnOutliers": [], + "values": [ + 2.22 + ] + }, + { + "columnCategory": "2023-11-04", + "columnMax": 2.12, + "columnThirdQuartile": "NaN", + "columnMedian": "2.1", + "columnFirstQuartile": "2.1", + "columnMin": 2.12, + "columnTotal": 2.12, + "columnSd": "NaN", + "columnMean": "2.1", + "columnOutliers": [], + "values": [ + 2.12 + ] + }, + { + "columnCategory": "2023-11-11", + "columnMax": 2.31, + "columnThirdQuartile": "NaN", + "columnMedian": "2.3", + "columnFirstQuartile": "2.3", + "columnMin": 2.31, + "columnTotal": 2.31, + "columnSd": "NaN", + "columnMean": "2.3", + "columnOutliers": [], + "values": [ + 2.31 + ] + }, + { + "columnCategory": "2023-11-18", + "columnMax": 2.4, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.4, + "columnTotal": 2.4, + "columnSd": "NaN", + "columnMean": "2.4", + "columnOutliers": [], + "values": [ + 2.4 + ] + }, + { + "columnCategory": "2023-11-25", + "columnMax": 2.4, + "columnThirdQuartile": "NaN", + "columnMedian": "2.4", + "columnFirstQuartile": "2.4", + "columnMin": 2.4, + "columnTotal": 2.4, + "columnSd": "NaN", + "columnMean": "2.4", + "columnOutliers": [], + "values": [ + 2.4 + ] + }, + { + "columnCategory": "2023-12-02", + "columnMax": 2.79, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.79, + "columnTotal": 2.79, + "columnSd": "NaN", + "columnMean": "2.8", + "columnOutliers": [], + "values": [ + 2.79 + ] + }, + { + "columnCategory": "2023-12-09", + "columnMax": 2.84, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.84, + "columnTotal": 2.84, + "columnSd": "NaN", + "columnMean": "2.8", + "columnOutliers": [], + "values": [ + 2.84 + ] + }, + { + "columnCategory": "2023-12-16", + "columnMax": 2.94, + "columnThirdQuartile": "NaN", + "columnMedian": "2.9", + "columnFirstQuartile": "2.9", + "columnMin": 2.94, + "columnTotal": 2.94, + "columnSd": "NaN", + "columnMean": "2.9", + "columnOutliers": [], + "values": [ + 2.94 + ] + }, + { + "columnCategory": "2023-12-23", + "columnMax": 3.01, + "columnThirdQuartile": "NaN", + "columnMedian": "3.0", + "columnFirstQuartile": "3.0", + "columnMin": 3.01, + "columnTotal": 3.01, + "columnSd": "NaN", + "columnMean": "3.0", + "columnOutliers": [], + "values": [ + 3.01 + ] + }, + { + "columnCategory": "2023-12-30", + "columnMax": 3.4, + "columnThirdQuartile": "NaN", + "columnMedian": "3.4", + "columnFirstQuartile": "3.4", + "columnMin": 3.4, + "columnTotal": 3.4, + "columnSd": "NaN", + "columnMean": "3.4", + "columnOutliers": [], + "values": [ + 3.4 + ] + }, + { + "columnCategory": "2024-01-06", + "columnMax": 3.71, + "columnThirdQuartile": "NaN", + "columnMedian": "3.7", + "columnFirstQuartile": "3.7", + "columnMin": 3.71, + "columnTotal": 3.71, + "columnSd": "NaN", + "columnMean": "3.7", + "columnOutliers": [], + "values": [ + 3.71 + ] + }, + { + "columnCategory": "2024-01-13", + "columnMax": 3.81, + "columnThirdQuartile": "NaN", + "columnMedian": "3.8", + "columnFirstQuartile": "3.8", + "columnMin": 3.81, + "columnTotal": 3.81, + "columnSd": "NaN", + "columnMean": "3.8", + "columnOutliers": [], + "values": [ + 3.81 + ] + }, + { + "columnCategory": "2024-01-20", + "columnMax": 3.54, + "columnThirdQuartile": "NaN", + "columnMedian": "3.5", + "columnFirstQuartile": "3.5", + "columnMin": 3.54, + "columnTotal": 3.54, + "columnSd": "NaN", + "columnMean": "3.5", + "columnOutliers": [], + "values": [ + 3.54 + ] + }, + { + "columnCategory": "2024-01-27", + "columnMax": 3.22, + "columnThirdQuartile": "NaN", + "columnMedian": "3.2", + "columnFirstQuartile": "3.2", + "columnMin": 3.22, + "columnTotal": 3.22, + "columnSd": "NaN", + "columnMean": "3.2", + "columnOutliers": [], + "values": [ + 3.22 + ] + }, + { + "columnCategory": "2024-02-03", + "columnMax": 2.79, + "columnThirdQuartile": "NaN", + "columnMedian": "2.8", + "columnFirstQuartile": "2.8", + "columnMin": 2.79, + "columnTotal": 2.79, + "columnSd": "NaN", + "columnMean": "2.8", + "columnOutliers": [], + "values": [ + 2.79 + ] + }, + { + "columnCategory": "2024-02-10", + "columnMax": 2.63, + "columnThirdQuartile": "NaN", + "columnMedian": "2.6", + "columnFirstQuartile": "2.6", + "columnMin": 2.63, + "columnTotal": 2.63, + "columnSd": "NaN", + "columnMean": "2.6", + "columnOutliers": [], + "values": [ + 2.63 + ] + }, + { + "columnCategory": "2024-02-17", + "columnMax": 2.23, + "columnThirdQuartile": "NaN", + "columnMedian": "2.2", + "columnFirstQuartile": "2.2", + "columnMin": 2.23, + "columnTotal": 2.23, + "columnSd": "NaN", + "columnMean": "2.2", + "columnOutliers": [], + "values": [ + 2.23 + ] + }, + { + "columnCategory": "2024-02-24", + "columnMax": 2.2, + "columnThirdQuartile": "NaN", + "columnMedian": "2.2", + "columnFirstQuartile": "2.2", + "columnMin": 2.2, + "columnTotal": 2.2, + "columnSd": "NaN", + "columnMean": "2.2", + "columnOutliers": [], + "values": [ + 2.2 + ] + } + ] + }, + "topAxis": { + "hasLine": false + }, + "isLegendValue": false, + "barThickness": "0.65", + "barHeight": 25, + "barSpace": 15, + "heights": { + "vertical": "250", + "horizontal": 2960, + "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": "45", + "padding": "1", + "showYearsOnce": true, + "sortByRecentDate": false, + "dataKey": "week_end", + "dateParseFormat": "%Y-%m-%d", + "dateDisplayFormat": "%b. %Y", + "label": "", + "tickWidthMax": 83, + "axisBBox": 38.939998626708984 + }, + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showDownloadLinkBelow": true, + "indexLabel": "Week Ending", + "download": true, + "showVertical": true, + "dateDisplayFormat": "%B %-d, %Y", + "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, + "data": [ + { + "week_end": "2022-10-01", + "**Numeric Value Property**": "", + "Influenza": "0.04", + "COVID-19": "4.06" + }, + { + "week_end": "2022-10-08", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "COVID-19": "3.68" + }, + { + "week_end": "2022-10-15", + "**Numeric Value Property**": "", + "Influenza": "0.09", + "RSV": "0.02", + "COVID-19": "3.6" + }, + { + "week_end": "2022-10-22", + "**Numeric Value Property**": "", + "Influenza": "0.09", + "RSV": "0.03", + "COVID-19": "3.66" + }, + { + "week_end": "2022-10-29", + "**Numeric Value Property**": "", + "Influenza": "0.15", + "RSV": "0.02", + "COVID-19": "3.74" + }, + { + "week_end": "2022-11-05", + "**Numeric Value Property**": "", + "Influenza": "0.24", + "RSV": "0.03", + "COVID-19": "3.68" + }, + { + "week_end": "2022-11-12", + "**Numeric Value Property**": "", + "Influenza": "0.36", + "RSV": "0.07", + "COVID-19": "3.61" + }, + { + "week_end": "2022-11-19", + "**Numeric Value Property**": "", + "Influenza": "0.41", + "RSV": "0.05", + "COVID-19": "3.66" + }, + { + "week_end": "2022-11-26", + "**Numeric Value Property**": "", + "Influenza": "0.65", + "RSV": "0.07", + "COVID-19": "3.87" + }, + { + "week_end": "2022-12-03", + "**Numeric Value Property**": "", + "Influenza": "1.27", + "RSV": "0.1", + "COVID-19": "3.94" + }, + { + "week_end": "2022-12-10", + "**Numeric Value Property**": "", + "Influenza": "1.5", + "RSV": "0.1", + "COVID-19": "4.53" + }, + { + "week_end": "2022-12-17", + "**Numeric Value Property**": "", + "Influenza": "1.55", + "RSV": "0.06", + "COVID-19": "4.8" + }, + { + "week_end": "2022-12-24", + "**Numeric Value Property**": "", + "Influenza": "1.37", + "RSV": "0.08", + "COVID-19": "4.88" + }, + { + "week_end": "2022-12-31", + "**Numeric Value Property**": "", + "Influenza": "1.37", + "RSV": "0.09", + "COVID-19": "5.21" + }, + { + "week_end": "2023-01-07", + "**Numeric Value Property**": "", + "Influenza": "1.25", + "RSV": "0.07", + "COVID-19": "5.64" + }, + { + "week_end": "2023-01-14", + "**Numeric Value Property**": "", + "Influenza": "0.92", + "RSV": "0.06", + "COVID-19": "5.59" + }, + { + "week_end": "2023-01-21", + "**Numeric Value Property**": "", + "Influenza": "0.58", + "RSV": "0.05", + "COVID-19": "5.09" + }, + { + "week_end": "2023-01-28", + "**Numeric Value Property**": "", + "Influenza": "0.42", + "RSV": "0.03", + "COVID-19": "4.7" + }, + { + "week_end": "2023-02-04", + "**Numeric Value Property**": "", + "Influenza": "0.21", + "RSV": "0.02", + "COVID-19": "4.23" + }, + { + "week_end": "2023-02-11", + "**Numeric Value Property**": "", + "Influenza": "0.17", + "RSV": "0.02", + "COVID-19": "3.77" + }, + { + "week_end": "2023-02-18", + "**Numeric Value Property**": "", + "Influenza": "0.18", + "COVID-19": "3.43" + }, + { + "week_end": "2023-02-25", + "**Numeric Value Property**": "", + "Influenza": "0.12", + "COVID-19": "3.5" + }, + { + "week_end": "2023-03-04", + "**Numeric Value Property**": "", + "Influenza": "0.1", + "COVID-19": "3.27" + }, + { + "week_end": "2023-03-11", + "**Numeric Value Property**": "", + "Influenza": "0.08", + "RSV": "0.02", + "COVID-19": "3.08" + }, + { + "week_end": "2023-03-18", + "**Numeric Value Property**": "", + "Influenza": "0.09", + "COVID-19": "2.91" + }, + { + "week_end": "2023-03-25", + "**Numeric Value Property**": "", + "Influenza": "0.08", + "COVID-19": "2.78" + }, + { + "week_end": "2023-04-01", + "**Numeric Value Property**": "", + "Influenza": "0.07", + "COVID-19": "2.43" + }, + { + "week_end": "2023-04-08", + "**Numeric Value Property**": "", + "Influenza": "0.07", + "COVID-19": "2.35" + }, + { + "week_end": "2023-04-15", + "**Numeric Value Property**": "", + "Influenza": "0.07", + "COVID-19": "2.08" + }, + { + "week_end": "2023-04-22", + "**Numeric Value Property**": "", + "Influenza": "0.06", + "RSV": "0.0", + "COVID-19": "2.06" + }, + { + "week_end": "2023-04-29", + "**Numeric Value Property**": "", + "Influenza": "0.07", + "COVID-19": "1.79" + }, + { + "week_end": "2023-05-06", + "**Numeric Value Property**": "", + "Influenza": "0.06", + "COVID-19": "1.65" + }, + { + "week_end": "2023-05-13", + "**Numeric Value Property**": "", + "Influenza": "0.06", + "COVID-19": "1.47" + }, + { + "week_end": "2023-05-20", + "**Numeric Value Property**": "", + "Influenza": "0.06", + "COVID-19": "1.35" + }, + { + "week_end": "2023-05-27", + "**Numeric Value Property**": "", + "Influenza": "0.06", + "COVID-19": "1.35" + }, + { + "week_end": "2023-06-03", + "**Numeric Value Property**": "", + "Influenza": "0.07", + "COVID-19": "1.23" + }, + { + "week_end": "2023-06-10", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "COVID-19": "1.14" + }, + { + "week_end": "2023-06-17", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "COVID-19": "1.1" + }, + { + "week_end": "2023-06-24", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "COVID-19": "1.04" + }, + { + "week_end": "2023-07-01", + "**Numeric Value Property**": "", + "Influenza": "0.04", + "COVID-19": "0.99" + }, + { + "week_end": "2023-07-08", + "**Numeric Value Property**": "", + "Influenza": "0.06", + "RSV": "0.0", + "COVID-19": "0.88" + }, + { + "week_end": "2023-07-15", + "**Numeric Value Property**": "", + "Influenza": "0.04", + "RSV": "0.0", + "COVID-19": "0.93" + }, + { + "week_end": "2023-07-22", + "**Numeric Value Property**": "", + "Influenza": "0.03", + "COVID-19": "0.98" + }, + { + "week_end": "2023-07-29", + "**Numeric Value Property**": "", + "Influenza": "0.02", + "RSV": "0.0", + "COVID-19": "0.99" + }, + { + "week_end": "2023-08-05", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "RSV": "0.0", + "COVID-19": "1.21" + }, + { + "week_end": "2023-08-12", + "**Numeric Value Property**": "", + "Influenza": "0.03", + "COVID-19": "1.33" + }, + { + "week_end": "2023-08-19", + "**Numeric Value Property**": "", + "Influenza": "0.04", + "COVID-19": "1.64" + }, + { + "week_end": "2023-08-26", + "**Numeric Value Property**": "", + "Influenza": "0.04", + "RSV": "0.0", + "COVID-19": "1.9" + }, + { + "week_end": "2023-09-02", + "**Numeric Value Property**": "", + "Influenza": "0.03", + "COVID-19": "2.13" + }, + { + "week_end": "2023-09-09", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "COVID-19": "2.3" + }, + { + "week_end": "2023-09-16", + "**Numeric Value Property**": "", + "Influenza": "0.07", + "COVID-19": "2.5" + }, + { + "week_end": "2023-09-23", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "COVID-19": "2.51" + }, + { + "week_end": "2023-09-30", + "**Numeric Value Property**": "", + "Influenza": "0.05", + "COVID-19": "2.55" + }, + { + "week_end": "2023-10-07", + "**Numeric Value Property**": "", + "Influenza": "0.04", + "COVID-19": "2.42" + }, + { + "week_end": "2023-10-14", + "**Numeric Value Property**": "", + "Influenza": "0.06", + "COVID-19": "2.26" + }, + { + "week_end": "2023-10-21", + "**Numeric Value Property**": "", + "Influenza": "0.08", + "COVID-19": "2.39" + }, + { + "week_end": "2023-10-28", + "**Numeric Value Property**": "", + "Influenza": "0.08", + "COVID-19": "2.22" + }, + { + "week_end": "2023-11-04", + "**Numeric Value Property**": "", + "Influenza": "0.1", + "COVID-19": "2.12" + }, + { + "week_end": "2023-11-11", + "**Numeric Value Property**": "", + "Influenza": "0.11", + "RSV": "0.02", + "COVID-19": "2.31" + }, + { + "week_end": "2023-11-18", + "**Numeric Value Property**": "", + "Influenza": "0.13", + "RSV": "0.02", + "COVID-19": "2.4" + }, + { + "week_end": "2023-11-25", + "**Numeric Value Property**": "", + "Influenza": "0.18", + "RSV": "0.02", + "COVID-19": "2.4" + }, + { + "week_end": "2023-12-02", + "**Numeric Value Property**": "", + "Influenza": "0.25", + "RSV": "0.04", + "COVID-19": "2.79" + }, + { + "week_end": "2023-12-09", + "**Numeric Value Property**": "", + "Influenza": "0.3", + "RSV": "0.06", + "COVID-19": "2.84" + }, + { + "week_end": "2023-12-16", + "**Numeric Value Property**": "", + "Influenza": "0.42", + "RSV": "0.07", + "COVID-19": "2.94" + }, + { + "week_end": "2023-12-23", + "**Numeric Value Property**": "", + "Influenza": "0.65", + "RSV": "0.07", + "COVID-19": "3.01" + }, + { + "week_end": "2023-12-30", + "**Numeric Value Property**": "", + "Influenza": "1.0", + "RSV": "0.09", + "COVID-19": "3.4" + }, + { + "week_end": "2024-01-06", + "**Numeric Value Property**": "", + "Influenza": "1.27", + "RSV": "0.12", + "COVID-19": "3.71" + }, + { + "week_end": "2024-01-13", + "**Numeric Value Property**": "", + "Influenza": "1.19", + "RSV": "0.11", + "COVID-19": "3.81" + }, + { + "week_end": "2024-01-20", + "**Numeric Value Property**": "", + "Influenza": "1.01", + "RSV": "0.08", + "COVID-19": "3.54" + }, + { + "week_end": "2024-01-27", + "**Numeric Value Property**": "", + "Influenza": "0.87", + "RSV": "0.07", + "COVID-19": "3.22" + }, + { + "week_end": "2024-02-03", + "**Numeric Value Property**": "", + "Influenza": "0.8", + "RSV": "0.08", + "COVID-19": "2.79" + }, + { + "week_end": "2024-02-10", + "**Numeric Value Property**": "", + "Influenza": "0.71", + "RSV": "0.05", + "COVID-19": "2.63" + }, + { + "week_end": "2024-02-17", + "**Numeric Value Property**": "", + "Influenza": "0.7", + "RSV": "0.05", + "COVID-19": "2.23" + }, + { + "week_end": "2024-02-24", + "**Numeric Value Property**": "", + "Influenza": "0.68", + "RSV": "0.04", + "COVID-19": "2.2" + } + ], + "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": " percent of deaths", + "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": "COVID-19", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "Influenza", + "type": "Bar", + "axis": "Left", + "tooltip": true + }, + { + "dataKey": "RSV", + "type": "Bar", + "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": "Bar", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NVSSConsolidatedNationalDataAggregated.json", + "customColors": [ + "#f06f19", + "#0a58d6", + "#890664", + "#000000", + "#0A6C75", + "#00a089", + "#87b6f9", + "#867a77", + "#000000" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NVSSConsolidatedNationalDataAggregated.json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": true, + "singleRow": false, + "seriesKey": "pathogen", + "xKey": "week_end", + "valueKeys": [ + "percent_deaths_selected_pathogen_currentweek" + ] + }, + "validated": "4.24.3", + "dynamicMarginTop": 0, + "description": "

One or more data points are based on death counts between 1-9 and have been suppressed in accordance with National Center for Health Statistics confidentiality standards.

Data last updated on and presented through . View this dataset on data.cdc.gov.

", + "regions": [ + { + "from": "14", + "to": "2024-01-06", + "background": "#777777", + "color": "", + "label": "", + "toType": "Last Date", + "fromType": "Previous Days" + } + ], + "version": "4.24.10" +} \ No newline at end of file diff --git a/packages/map/src/_stories/CdcMap.RespiratoryVirus.stories.tsx b/packages/map/src/_stories/CdcMap.RespiratoryVirus.stories.tsx new file mode 100644 index 000000000..641b7ac81 --- /dev/null +++ b/packages/map/src/_stories/CdcMap.RespiratoryVirus.stories.tsx @@ -0,0 +1,32 @@ +import type { Meta, StoryObj } from '@storybook/react' +import CdcMap from '../CdcMap' + +const meta: Meta = { + title: 'Components/Templates/Map/Respiratory Virus', + component: CdcMap +} + +type Story = StoryObj + +export default meta + +import ARI_Map_Viz_json from './_mock/respiratory-virus/ARI_Map_Viz.json' +export const ARI_Map_Viz: Story = { + args: { + config: ARI_Map_Viz_json + } +} + +import wastewatermap_json from './_mock/respiratory-virus/wastewatermap.json' +export const wastewatermap: Story = { + args: { + config: wastewatermap_json + } +} + +import CFA_Map_Viz_json from './_mock/respiratory-virus/CFA_Map_Viz.json' +export const CFA_Map_Viz: Story = { + args: { + config: CFA_Map_Viz_json + } +} diff --git a/packages/map/src/_stories/_mock/respiratory-virus/ARI_Map_Viz.json b/packages/map/src/_stories/_mock/respiratory-virus/ARI_Map_Viz.json new file mode 100644 index 000000000..c1ade5a2d --- /dev/null +++ b/packages/map/src/_stories/_mock/respiratory-virus/ARI_Map_Viz.json @@ -0,0 +1,180 @@ +{ + "annotations": [], + "general": { + "noStateFoundMessage": "Map Unavailable", + "annotationDropdownText": "Annotations", + "geoBorderColor": "darkGray", + "headerColor": "theme-blue", + "title": "", + "showTitle": true, + "showSidebar": true, + "showDownloadButton": true, + "showDownloadMediaButton": false, + "displayAsHex": false, + "displayStateLabels": false, + "territoriesLabel": "Territories", + "territoriesAlwaysShow": false, + "language": "en", + "geoType": "us", + "geoLabelOverride": "", + "hasRegions": false, + "fullBorder": false, + "type": "map", + "convertFipsCodes": true, + "palette": { + "isReversed": false + }, + "allowMapZoom": false, + "hideGeoColumnInTooltip": false, + "hidePrimaryColumnInTooltip": false, + "statePicked": { + "fipsCode": "01", + "stateName": "Alabama" + }, + "expandDataTable": false, + "subtext": "
Data last updated on and presented through . View this dataset on data.cdc.gov.
" + }, + "type": "map", + "color": "pinkpurple", + "columns": { + "geo": { + "name": "geography", + "label": "Location", + "tooltip": false, + "dataTable": true + }, + "primary": { + "dataTable": true, + "tooltip": true, + "prefix": "", + "suffix": "", + "name": "label", + "label": "Respiratory Illness Level", + "roundToPlace": 0 + }, + "navigate": { + "name": "" + }, + "latitude": { + "name": "" + }, + "longitude": { + "name": "" + } + }, + "legend": { + "descriptions": {}, + "specialClasses": [], + "unified": false, + "singleColumn": false, + "singleRow": true, + "verticalSorted": false, + "showSpecialClassesLast": false, + "dynamicDescription": false, + "type": "category", + "numberOfItems": 3, + "position": "top", + "title": "Acute Respiratory Illness", + "style": "gradient", + "subStyle": "linear blocks", + "tickRotation": "", + "singleColumnLegend": false, + "hideBorder": true, + "categoryValuesOrder": [ + "Minimal", + "Low", + "Moderate", + "High", + "Very High", + "Data Unavailable" + ], + "additionalCategories": [ + "Data Unavailable", + "Minimal", + "Low", + "Moderate", + "High", + "Very High" + ] + }, + "filters": [], + "table": { + "wrapColumns": false, + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showFullGeoNameInCSV": false, + "forceDisplay": true, + "download": true, + "indexLabel": "", + "showDownloadLinkBelow": true + }, + "tooltips": { + "appearanceType": "hover", + "linkLabel": "Learn More", + "capitalizeLabels": true, + "opacity": 90 + }, + "visual": { + "minBubbleSize": 1, + "maxBubbleSize": 20, + "extraBubbleBorder": false, + "cityStyle": "circle", + "cityStyleLabel": "", + "showBubbleZeros": false, + "additionalCityStyles": [], + "geoCodeCircleSize": "5" + }, + "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", + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/ARIBaselineMetricMap.json", + "customColors": [ + "#D7F2ED", + "#D7F2ED", + "#B8E5AC", + "#FEA82F", + "#F45B53", + "#A03169", + "#EBEBEB", + "#EBEBEB" + ], + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": false + }, + "version": "4.24.10", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/ARIBaselineMetricMap.json" +} \ No newline at end of file diff --git a/packages/map/src/_stories/_mock/respiratory-virus/CFA_Map_Viz.json b/packages/map/src/_stories/_mock/respiratory-virus/CFA_Map_Viz.json new file mode 100644 index 000000000..c52df0ccf --- /dev/null +++ b/packages/map/src/_stories/_mock/respiratory-virus/CFA_Map_Viz.json @@ -0,0 +1,199 @@ +{ + "annotations": [], + "general": { + "noStateFoundMessage": "Map Unavailable", + "annotationDropdownText": "Annotations", + "geoBorderColor": "darkGray", + "headerColor": "theme-blue", + "title": "", + "showTitle": true, + "showSidebar": true, + "showDownloadButton": true, + "showDownloadMediaButton": false, + "displayAsHex": false, + "displayStateLabels": false, + "territoriesLabel": "Territories", + "territoriesAlwaysShow": false, + "language": "en", + "geoType": "us", + "geoLabelOverride": "", + "hasRegions": false, + "fullBorder": false, + "type": "map", + "convertFipsCodes": true, + "palette": { + "isReversed": false + }, + "allowMapZoom": false, + "hideGeoColumnInTooltip": false, + "hidePrimaryColumnInTooltip": false, + "statePicked": { + "fipsCode": "01", + "stateName": "Alabama" + }, + "expandDataTable": false, + "subtext": "
Data last updated on and presented through . " + }, + "type": "map", + "color": "pinkpurple", + "columns": { + "geo": { + "name": "geography", + "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": true, + "verticalSorted": false, + "showSpecialClassesLast": true, + "dynamicDescription": false, + "type": "category", + "numberOfItems": 3, + "position": "top", + "title": "Epidemic Trend", + "style": "gradient", + "subStyle": "linear blocks", + "tickRotation": "", + "singleColumnLegend": false, + "hideBorder": true, + "categoryValuesOrder": [ + "Declining", + "Likely Declining", + "Not Changing", + "Likely Growing", + "Growing", + "Not Estimated" + ], + "additionalCategories": [ + "Declining", + "Likely Declining", + "Not Changing", + "Likely Growing", + "Growing", + "Not Estimated" + ] + }, + "filters": [ + { + "order": "asc", + "label": "", + "columnName": "pathogen", + "values": [ + "COVID-19", + "Influenza" + ], + "active": "COVID-19", + "filterStyle": "tab bar" + } + ], + "table": { + "wrapColumns": false, + "label": "Data Table", + "expanded": false, + "limitHeight": false, + "height": "", + "caption": "", + "showDownloadUrl": false, + "showDataTableLink": true, + "showFullGeoNameInCSV": false, + "forceDisplay": true, + "download": true, + "indexLabel": "", + "showDownloadLinkBelow": true + }, + "tooltips": { + "appearanceType": "hover", + "linkLabel": "Learn More", + "capitalizeLabels": true, + "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", + "customColors": [ + "#006166", + "#006166", + "#3bbbb0", + "#bdbdbd", + "#b83d93", + "#6d085a", + "#ffffff", + "#ffffff" + ], + "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/CFACombinedRtMap.json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": false, + "singleRow": false + }, + "version": "4.24.10", + "editor": { + "activeFilterValueForDescription": [ + 0, + 0 + ] + }, + "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/CFACombinedRtMap.json" +} \ No newline at end of file diff --git a/packages/map/src/_stories/_mock/respiratory-virus/wastewatermap.json b/packages/map/src/_stories/_mock/respiratory-virus/wastewatermap.json new file mode 100644 index 000000000..95af8cdfe --- /dev/null +++ b/packages/map/src/_stories/_mock/respiratory-virus/wastewatermap.json @@ -0,0 +1,233 @@ +{ + "annotations": [], + "general": { + "geoBorderColor": "darkGray", + "headerColor": "theme-blue", + "title": "", + "showTitle": true, + "showSidebar": true, + "showDownloadButton": true, + "showDownloadMediaButton": false, + "displayAsHex": false, + "displayStateLabels": false, + "territoriesLabel": "Territories", + "territoriesAlwaysShow": false, + "language": "en", + "geoType": "us", + "geoLabelOverride": "State/Territory", + "hasRegions": false, + "fullBorder": false, + "type": "map", + "convertFipsCodes": true, + "palette": { + "isReversed": true + }, + "allowMapZoom": true, + "hideGeoColumnInTooltip": false, + "hidePrimaryColumnInTooltip": false, + "statePicked": { + "fipsCode": "01", + "stateName": "Alabama" + }, + "expandDataTable": false, + "annotationDropdownText": "Annotations", + "noStateFoundMessage": "Map Unavailable", + "subtext": "
Data last updated on and presented through . " + }, + "type": "map", + "color": "greenbluereverse", + "columns": { + "geo": { + "name": "State", + "label": "Location", + "tooltip": false, + "dataTable": true + }, + "primary": { + "dataTable": true, + "tooltip": true, + "prefix": "", + "suffix": "", + "name": "activity_level_label", + "label": "Viral Activity Level", + "roundToPlace": 0 + }, + "navigate": { + "name": "" + }, + "latitude": { + "name": "" + }, + "longitude": { + "name": "" + }, + "additionalColumn1": { + "label": "Sites Currently Reporting", + "dataTable": true, + "tooltips": false, + "prefix": "", + "suffix": "", + "name": "num_sites", + "tooltip": true + }, + "additionalColumn2": { + "label": "Limited Coverage", + "dataTable": true, + "tooltips": false, + "prefix": "", + "suffix": "", + "tooltip": false, + "name": "hatch" + }, + "additionalColumn3": { + "label": "", + "dataTable": false, + "tooltips": false, + "prefix": "", + "suffix": "", + "tooltip": true, + "useCommas": true, + "name": "hatch" + } + }, + "legend": { + "descriptions": {}, + "specialClasses": [], + "unified": false, + "singleColumn": false, + "singleRow": true, + "verticalSorted": false, + "showSpecialClassesLast": true, + "dynamicDescription": false, + "type": "category", + "numberOfItems": 8, + "position": "top", + "title": "Wastewater Viral Activity Level", + "categoryValuesOrder": [ + "Minimal", + "Low", + "Moderate", + "High", + "Very High", + "No Data" + ], + "additionalCategories": [ + "No Data", + "Minimal", + "Low", + "Moderate", + "High", + "Very High" + ], + "description": "", + "style": "gradient", + "subStyle": "linear blocks", + "tickRotation": "", + "singleColumnLegend": false, + "hideBorder": true + }, + "filters": [ + { + "order": "asc", + "label": "Select a virus from the dropdown:", + "columnName": "pathogen", + "values": [ + "COVID-19", + "Influenza A", + "RSV" + ], + "active": "COVID-19", + "filterStyle": "dropdown" + } + ], + "table": { + "label": "Data Table", + "expanded": false, + "limitHeight": true, + "height": "500", + "caption": "", + "showDownloadUrl": true, + "showDataTableLink": true, + "showFullGeoNameInCSV": false, + "forceDisplay": true, + "download": true, + "indexLabel": "State/Territory", + "wrapColumns": false, + "showDownloadLinkBelow": true + }, + "tooltips": { + "appearanceType": "hover", + "linkLabel": "Learn More", + "capitalizeLabels": true, + "opacity": 90 + }, + "visual": { + "minBubbleSize": 1, + "maxBubbleSize": 20, + "extraBubbleBorder": false, + "cityStyle": "circle", + "geoCodeCircleSize": 2, + "showBubbleZeros": false, + "cityStyleLabel": "", + "additionalCityStyles": [] + }, + "mapPosition": { + "coordinates": [ + 0, + 30 + ], + "zoom": 1 + }, + "map": { + "layers": [], + "patterns": [ + { + "dataKey": "hatch", + "pattern": "lines", + "dataValue": "Limited Coverage", + "label": "Limited Coverage*", + "size": "medium" + } + ] + }, + "hexMap": { + "type": "", + "shapeGroups": [ + { + "legendTitle": "", + "legendDescription": "", + "items": [ + { + "key": "", + "shape": "Arrow Up", + "column": "", + "operator": "=", + "value": "" + } + ] + } + ] + }, + "filterBehavior": "Filter Change", + "customColors": [ + "#C8EFDA", + "#9FDAD0", + "#9FDAD0", + "#6BB0BD", + "#4B7F9B", + "#34547B", + "#B4B4B4", + "#B4B4B4", + "#B4B4B4", + "#B4B4B4" + ], + "datasets": {}, + "dataFileName": "https://www.cdc.gov/wcms/vizdata/ncezid_didri/NWSSStateMapCombined.json", + "dataFileSourceType": "url", + "dataDescription": { + "horizontal": false, + "series": false + }, + "version": "4.24.10", + "dataUrl": "https://www.cdc.gov/wcms/vizdata/ncezid_didri/NWSSStateMapCombined.json" +} \ No newline at end of file