@cdc/dashboard 4.25.10 → 4.25.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{cdcdashboard-fce76882.es.js → cdcdashboard-BnB1QM5d.es.js} +6 -13
- package/dist/{cdcdashboard-c55ac1ea.es.js → cdcdashboard-D6CG2-Hb.es.js} +5 -12
- package/dist/{cdcdashboard-31a33da1.es.js → cdcdashboard-MXgURbdZ.es.js} +6 -13
- package/dist/{cdcdashboard-1a1724a1.es.js → cdcdashboard-dgT_1dIT.es.js} +136 -151
- package/dist/cdcdashboard.js +48574 -46414
- package/examples/api-test/categories.json +18 -0
- package/examples/api-test/chart-data.json +602 -0
- package/examples/api-test/topics.json +47 -0
- package/examples/api-test/years.json +22 -0
- package/examples/markup-axis-label.json +4167 -0
- package/examples/private/DEV-10538.json +407 -0
- package/examples/private/DEV-11405.json +39112 -0
- package/examples/private/big-dashboard.json +39095 -39077
- package/examples/private/clade-2.json +430 -0
- package/examples/private/delete.json +32919 -0
- package/examples/private/diabetes.json +546 -196
- package/examples/private/markup-footer/mortality-deaths-footnotes-age.csv +3 -0
- package/examples/private/mpox.json +38128 -0
- package/examples/private/reset.json +32920 -0
- package/examples/test-api-filter-reset.json +132 -0
- package/index.html +2 -2
- package/package.json +9 -10
- package/src/CdcDashboardComponent.tsx +17 -8
- package/src/DashboardContext.tsx +3 -1
- package/src/_stories/Dashboard.stories.tsx +17 -0
- package/src/_stories/_mock/custom-order-new-values.json +116 -0
- package/src/components/DashboardFilters/DashboardFilters.tsx +34 -20
- package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +29 -12
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +77 -111
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +51 -51
- package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +120 -24
- package/src/components/DashboardFilters/_stories/DashboardFilters.stories.tsx +62 -3
- package/src/components/DataDesignerModal.tsx +12 -5
- package/src/components/Header/Header.tsx +10 -9
- package/src/components/Toggle/Toggle.tsx +48 -48
- package/src/components/VisualizationRow.tsx +4 -3
- package/src/helpers/addValuesToDashboardFilters.ts +29 -4
- package/src/helpers/apiFilterHelpers.ts +26 -2
- package/src/helpers/filterData.ts +52 -7
- package/src/helpers/filterResetHelpers.ts +102 -0
- package/src/helpers/getVizConfig.ts +2 -2
- package/src/helpers/loadAPIFilters.ts +109 -99
- package/src/helpers/tests/filterResetHelpers.test.ts +532 -0
- package/src/index.tsx +1 -0
- package/src/scss/editor-panel.scss +3 -431
- package/src/scss/main.scss +1 -24
- package/src/store/errorMessage/errorMessage.reducer.ts +1 -1
- package/src/types/DashboardFilters.ts +9 -8
- package/examples/private/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv +0 -14041
- package/examples/private/burden_toolkit_mortality_diabetes_attributable_deaths_per_100000_data.csv +0 -14041
- package/examples/private/burden_toolkit_mortality_qaly_data.csv +0 -18721
- package/examples/private/burden_toolkit_mortality_yll_data.csv +0 -18721
- package/src/helpers/getAutoLoadVisualization.ts +0 -11
- package/src/scss/mixins.scss +0 -47
- package/src/scss/variables.scss +0 -5
- /package/dist/{cdcdashboard-548642e6.es.js → cdcdashboard-Ct2SB0vL.es.js} +0 -0
|
@@ -22,35 +22,43 @@
|
|
|
22
22
|
"datasets": {
|
|
23
23
|
"Attributable Deaths": {
|
|
24
24
|
"dataFileSize": 2800924,
|
|
25
|
-
"dataFileName": "
|
|
25
|
+
"dataFileName": "https://wcms-wp.cdc.gov/diabetes/burden-toolkit/data-json/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv",
|
|
26
26
|
"dataFileSourceType": "url",
|
|
27
27
|
"dataFileFormat": "CSV",
|
|
28
28
|
"preview": false,
|
|
29
|
-
"dataUrl": "http://localhost:8080/examples/private/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv"
|
|
29
|
+
"dataUrl": "http://localhost:8080/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv"
|
|
30
30
|
},
|
|
31
31
|
"Attributable Deaths 100k": {
|
|
32
32
|
"dataFileSize": 2821516,
|
|
33
|
-
"dataFileName": "
|
|
33
|
+
"dataFileName": "https://localhost:8080/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_per_100000_data.csv",
|
|
34
34
|
"dataFileSourceType": "url",
|
|
35
35
|
"dataFileFormat": "CSV",
|
|
36
36
|
"preview": false,
|
|
37
|
-
"dataUrl": "http://localhost:8080/examples/private/
|
|
37
|
+
"dataUrl": "http://localhost:8080/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_per_100000_data.csv"
|
|
38
38
|
},
|
|
39
39
|
"QALY": {
|
|
40
40
|
"dataFileSize": 3046121,
|
|
41
|
-
"dataFileName": "
|
|
41
|
+
"dataFileName": "https://localhost:8080/examples/private/markup-footer/burden_toolkit_mortality_qaly_data.csv",
|
|
42
42
|
"dataFileSourceType": "url",
|
|
43
43
|
"dataFileFormat": "CSV",
|
|
44
44
|
"preview": false,
|
|
45
|
-
"dataUrl": "http://localhost:8080/examples/private/
|
|
45
|
+
"dataUrl": "http://localhost:8080/examples/private/markup-footer/burden_toolkit_mortality_qaly_data.csv"
|
|
46
46
|
},
|
|
47
47
|
"YPLL": {
|
|
48
48
|
"dataFileSize": 2672784,
|
|
49
|
-
"dataFileName": "
|
|
49
|
+
"dataFileName": "https://localhost:8080/examples/private/markup-footer/burden_toolkit_mortality_yll_data.csv",
|
|
50
|
+
"dataFileSourceType": "url",
|
|
51
|
+
"dataFileFormat": "CSV",
|
|
52
|
+
"preview": false,
|
|
53
|
+
"dataUrl": "https://localhost:8080/examples/private/markup-footer/burden_toolkit_mortality_yll_data.csv"
|
|
54
|
+
},
|
|
55
|
+
"mortality-deaths-footnotes-age": {
|
|
56
|
+
"dataFileSize": 1173,
|
|
57
|
+
"dataFileName": "https://localhost:8080/examples/private/markup-footer/mortality-deaths-footnotes-age.csv",
|
|
50
58
|
"dataFileSourceType": "url",
|
|
51
59
|
"dataFileFormat": "CSV",
|
|
52
60
|
"preview": true,
|
|
53
|
-
"dataUrl": "http://localhost:8080/examples/private/
|
|
61
|
+
"dataUrl": "http://localhost:8080/examples/private/markup-footer/mortality-deaths-footnotes-age.csv"
|
|
54
62
|
}
|
|
55
63
|
},
|
|
56
64
|
"visualizationType": null,
|
|
@@ -189,7 +197,8 @@
|
|
|
189
197
|
"Cause-specific Diabetes-Attributable Deaths: Cardiovascular Disease (Estimated)",
|
|
190
198
|
"Cause-specific Diabetes-Attributable Deaths: End Stage Renal Disease"
|
|
191
199
|
],
|
|
192
|
-
"label": "Data Type:"
|
|
200
|
+
"label": "Data Type:",
|
|
201
|
+
"filterFootnotes": true
|
|
193
202
|
}
|
|
194
203
|
],
|
|
195
204
|
"filterBehavior": "Filter Change",
|
|
@@ -525,7 +534,13 @@
|
|
|
525
534
|
},
|
|
526
535
|
"data": []
|
|
527
536
|
},
|
|
528
|
-
"dynamicMarginTop": 0
|
|
537
|
+
"dynamicMarginTop": 0,
|
|
538
|
+
"footnotes": {
|
|
539
|
+
"dataKey": "./mortality-deaths-footnotes.csv",
|
|
540
|
+
"dynamicFootnotes": {
|
|
541
|
+
"textColumn": "M_datasource_footnotetext"
|
|
542
|
+
}
|
|
543
|
+
}
|
|
529
544
|
},
|
|
530
545
|
"table1758741188292": {
|
|
531
546
|
"filters": [
|
|
@@ -817,6 +832,12 @@
|
|
|
817
832
|
"dataDescription": {
|
|
818
833
|
"horizontal": false,
|
|
819
834
|
"series": false
|
|
835
|
+
},
|
|
836
|
+
"footnotes": {
|
|
837
|
+
"dataKey": "./mortality-deaths-footnotes-fig2.csv",
|
|
838
|
+
"dynamicFootnotes": {
|
|
839
|
+
"textColumn": "M_datasource_footnotetext"
|
|
840
|
+
}
|
|
820
841
|
}
|
|
821
842
|
},
|
|
822
843
|
"markup-include1758811279523": {
|
|
@@ -826,7 +847,7 @@
|
|
|
826
847
|
"uid": "markup-include1758811279523",
|
|
827
848
|
"type": "markup-include",
|
|
828
849
|
"contentEditor": {
|
|
829
|
-
"inlineHTML": "<p>
|
|
850
|
+
"inlineHTML": "<p>{{M_footnote_text_to_define_short_text}}</p>\n<p>All are estimates except End Stage Renal Disease which are counts.</p>\n<p>{{M_datasource_footnotetext}}</p>\n<p>{{M_footnote_context1}}</p>\n<p>{{M_footnote_context2}}</p>\n<p>{{M_footnote_context3}}</p>\n<br>\n<header class=\"cove-component__header component__header mb-3 theme-blue mb-0\"><h2>Results by Age Group </h2></header>",
|
|
830
851
|
"markupVariables": [],
|
|
831
852
|
"showHeader": true,
|
|
832
853
|
"srcUrl": "#example",
|
|
@@ -1121,6 +1142,12 @@
|
|
|
1121
1142
|
"dataDescription": {
|
|
1122
1143
|
"horizontal": false,
|
|
1123
1144
|
"series": false
|
|
1145
|
+
},
|
|
1146
|
+
"footnotes": {
|
|
1147
|
+
"dataKey": "./mortality-deaths-footnotes-fig2.csv",
|
|
1148
|
+
"dynamicFootnotes": {
|
|
1149
|
+
"textColumn": "M_datasource_footnotetext"
|
|
1150
|
+
}
|
|
1124
1151
|
}
|
|
1125
1152
|
},
|
|
1126
1153
|
"chart1758811341641": {
|
|
@@ -1149,7 +1176,8 @@
|
|
|
1149
1176
|
"Cause-specific Diabetes-Attributable Deaths: Cardiovascular Disease (Estimated)",
|
|
1150
1177
|
"Cause-specific Diabetes-Attributable Deaths: End Stage Renal Disease"
|
|
1151
1178
|
],
|
|
1152
|
-
"label": "Data Type:"
|
|
1179
|
+
"label": "Data Type:",
|
|
1180
|
+
"filterFootnotes": true
|
|
1153
1181
|
}
|
|
1154
1182
|
],
|
|
1155
1183
|
"filterBehavior": "Filter Change",
|
|
@@ -1485,17 +1513,109 @@
|
|
|
1485
1513
|
},
|
|
1486
1514
|
"data": []
|
|
1487
1515
|
},
|
|
1488
|
-
"dynamicMarginTop": 0
|
|
1516
|
+
"dynamicMarginTop": 0,
|
|
1517
|
+
"footnotes": {
|
|
1518
|
+
"dataKey": "./mortality-deaths-footnotes.csv",
|
|
1519
|
+
"dynamicFootnotes": {
|
|
1520
|
+
"textColumn": "M_datasource_footnotetext"
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1489
1523
|
},
|
|
1490
|
-
"markup-
|
|
1524
|
+
"markup-include1761674556232": {
|
|
1491
1525
|
"filters": [],
|
|
1492
1526
|
"filterBehavior": "Filter Change",
|
|
1493
1527
|
"openModal": false,
|
|
1494
|
-
"uid": "markup-
|
|
1528
|
+
"uid": "markup-include1761674556232",
|
|
1495
1529
|
"type": "markup-include",
|
|
1496
1530
|
"contentEditor": {
|
|
1497
|
-
"inlineHTML": "<
|
|
1498
|
-
"markupVariables": [
|
|
1531
|
+
"inlineHTML": "<button class=\"btn btn-primary\" style=\"line-height: 1.4em;\">\n<a style=\"color: white;\" target=\"_blank\" href=\"https://data.cdc.gov/Diabetes-Translation/Diabetes-Mortality-Query-1/dkhe-23uz/explore/query/SELECT%0A %60module_name%60%2C%0A %60module_indicator_name%60%2C%0A %60fips%60%2C%0A %60year%60%2C%0A %60location%60%2C%0A %60stratification1%60%2C%0A %60stratification_group1%60%2C%0A %60stratification2%60%2C%0A %60stratification_group2%60%2C%0A %60stratification_group2_label%60%2C%0A %60data_type%60%2C%0A %60data_type_label%60%2C%0A %60data_value%60%2C%0A %60short_indicator_text%60%2C%0A %60long_indicator_text%60%2C%0A %60gelolocation%60%0AWHERE%0A caseless_one_of%28%60location%60%2C %22{{location}}%22%29%0A AND caseless_one_of%28%60short_indicator_text%60%2C %22{{short_indicator_text}}%22%29%0AORDER BY %60location%60 DESC NULL LAST/page/filter\"><span class=\"text-left d-inline-block\">Download Results</span></a></button>",
|
|
1532
|
+
"markupVariables": [
|
|
1533
|
+
{
|
|
1534
|
+
"columnName": "M_location",
|
|
1535
|
+
"conditions": [],
|
|
1536
|
+
"name": "location",
|
|
1537
|
+
"tag": "{{location}}"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"columnName": "M_short_indicator_text",
|
|
1541
|
+
"conditions": [],
|
|
1542
|
+
"name": "short_indicator_text",
|
|
1543
|
+
"tag": "{{short_indicator_text}}"
|
|
1544
|
+
}
|
|
1545
|
+
],
|
|
1546
|
+
"showHeader": true,
|
|
1547
|
+
"srcUrl": "#example",
|
|
1548
|
+
"title": "",
|
|
1549
|
+
"useInlineHTML": true,
|
|
1550
|
+
"showNoDataMessage": false,
|
|
1551
|
+
"noDataMessageText": "No Data Available"
|
|
1552
|
+
},
|
|
1553
|
+
"theme": "theme-blue",
|
|
1554
|
+
"visual": {
|
|
1555
|
+
"border": false,
|
|
1556
|
+
"accent": false,
|
|
1557
|
+
"background": false,
|
|
1558
|
+
"hideBackgroundColor": false,
|
|
1559
|
+
"borderColorTheme": false
|
|
1560
|
+
},
|
|
1561
|
+
"showEditorPanel": true,
|
|
1562
|
+
"visualizationType": "markup-include",
|
|
1563
|
+
"dataKey": "Attributable Deaths",
|
|
1564
|
+
"dataDescription": {
|
|
1565
|
+
"horizontal": false,
|
|
1566
|
+
"series": false
|
|
1567
|
+
},
|
|
1568
|
+
"version": "4.25.8",
|
|
1569
|
+
"migrations": {
|
|
1570
|
+
"addColorMigration": true
|
|
1571
|
+
}
|
|
1572
|
+
},
|
|
1573
|
+
"markup-include1761679539091": {
|
|
1574
|
+
"filters": [],
|
|
1575
|
+
"filterBehavior": "Filter Change",
|
|
1576
|
+
"openModal": false,
|
|
1577
|
+
"uid": "markup-include1761679539091",
|
|
1578
|
+
"type": "markup-include",
|
|
1579
|
+
"contentEditor": {
|
|
1580
|
+
"inlineHTML": "<p>{{M_footnote_text_to_define_short_text}}</p>\n<p>All are estimates except End Stage Renal Disease which are counts.</p>\n<p>{{M_datasource_footnotetext}}</p>\n<p>{{M_footnote_context1}}</p>\n<p>{{M_footnote_context2}}</p>\n<p>{{M_footnote_context3}}</p>\n<p>{{M_footnote_context4}}</p>\n<p>{{M_footnote_context5}}</p>\n<p>{{M_footnote_context6}}</p>",
|
|
1581
|
+
"markupVariables": [
|
|
1582
|
+
{
|
|
1583
|
+
"columnName": "M_footnote_text_to_define_short_text",
|
|
1584
|
+
"conditions": [
|
|
1585
|
+
{
|
|
1586
|
+
"columnName": "M_short_indicator_text",
|
|
1587
|
+
"isOrIsNotEqualTo": "is",
|
|
1588
|
+
"value": "Cause-specific Deaths"
|
|
1589
|
+
}
|
|
1590
|
+
],
|
|
1591
|
+
"name": "M_footnote_text_to_define_short_text",
|
|
1592
|
+
"tag": "{{M_footnote_text_to_define_short_text}}"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"columnName": "M_datasource_footnotetext",
|
|
1596
|
+
"conditions": [
|
|
1597
|
+
{
|
|
1598
|
+
"columnName": "M_short_indicator_text",
|
|
1599
|
+
"isOrIsNotEqualTo": "is",
|
|
1600
|
+
"value": "Cause-specific Deaths"
|
|
1601
|
+
}
|
|
1602
|
+
],
|
|
1603
|
+
"name": "M_datasource_footnotetext",
|
|
1604
|
+
"tag": "{{M_datasource_footnotetext}}"
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"columnName": "M_datasource_footnotetext",
|
|
1608
|
+
"conditions": [
|
|
1609
|
+
{
|
|
1610
|
+
"columnName": "M_short_indicator_text",
|
|
1611
|
+
"isOrIsNotEqualTo": "is",
|
|
1612
|
+
"value": "Diabetes Cause of Death"
|
|
1613
|
+
}
|
|
1614
|
+
],
|
|
1615
|
+
"name": "M_datasource_footnotetext",
|
|
1616
|
+
"tag": "{{M_datasource_footnotetext}}"
|
|
1617
|
+
}
|
|
1618
|
+
],
|
|
1499
1619
|
"showHeader": true,
|
|
1500
1620
|
"srcUrl": "#example",
|
|
1501
1621
|
"title": "",
|
|
@@ -1513,6 +1633,11 @@
|
|
|
1513
1633
|
},
|
|
1514
1634
|
"showEditorPanel": true,
|
|
1515
1635
|
"visualizationType": "markup-include",
|
|
1636
|
+
"dataKey": "mortality-deaths-footnotes-age",
|
|
1637
|
+
"dataDescription": {
|
|
1638
|
+
"horizontal": false,
|
|
1639
|
+
"series": false
|
|
1640
|
+
},
|
|
1516
1641
|
"version": "4.25.8",
|
|
1517
1642
|
"migrations": {
|
|
1518
1643
|
"addColorMigration": true
|
|
@@ -1743,149 +1868,34 @@
|
|
|
1743
1868
|
"columns": [
|
|
1744
1869
|
{
|
|
1745
1870
|
"width": 12,
|
|
1746
|
-
"widget": "markup-
|
|
1871
|
+
"widget": "markup-include1761679539091"
|
|
1747
1872
|
}
|
|
1748
|
-
]
|
|
1873
|
+
],
|
|
1874
|
+
"uuid": 1761679536461,
|
|
1875
|
+
"dataDescription": {
|
|
1876
|
+
"horizontal": false,
|
|
1877
|
+
"series": false
|
|
1878
|
+
},
|
|
1879
|
+
"dataKey": "mortality-deaths-footnotes-age"
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
"columns": [
|
|
1883
|
+
{
|
|
1884
|
+
"width": 12,
|
|
1885
|
+
"widget": "markup-include1761674556232"
|
|
1886
|
+
}
|
|
1887
|
+
],
|
|
1888
|
+
"dataDescription": {
|
|
1889
|
+
"horizontal": false,
|
|
1890
|
+
"series": false
|
|
1891
|
+
},
|
|
1892
|
+
"dataKey": "Attributable Deaths",
|
|
1893
|
+
"uuid": 1761679536461
|
|
1749
1894
|
}
|
|
1750
1895
|
]
|
|
1751
1896
|
},
|
|
1752
1897
|
{
|
|
1753
|
-
"
|
|
1754
|
-
"sharedFilters": [
|
|
1755
|
-
{
|
|
1756
|
-
"key": "Location:",
|
|
1757
|
-
"showDropdown": true,
|
|
1758
|
-
"values": [
|
|
1759
|
-
"United States",
|
|
1760
|
-
"Alabama",
|
|
1761
|
-
"Alaska",
|
|
1762
|
-
"Arizona",
|
|
1763
|
-
"Arkansas",
|
|
1764
|
-
"California",
|
|
1765
|
-
"Colorado",
|
|
1766
|
-
"Connecticut",
|
|
1767
|
-
"Delaware",
|
|
1768
|
-
"District Of Columbia",
|
|
1769
|
-
"Florida",
|
|
1770
|
-
"Georgia",
|
|
1771
|
-
"Hawaii",
|
|
1772
|
-
"Idaho",
|
|
1773
|
-
"Illinois",
|
|
1774
|
-
"Indiana",
|
|
1775
|
-
"Iowa",
|
|
1776
|
-
"Kansas",
|
|
1777
|
-
"Kentucky",
|
|
1778
|
-
"Louisiana",
|
|
1779
|
-
"Maine",
|
|
1780
|
-
"Maryland",
|
|
1781
|
-
"Massachusetts",
|
|
1782
|
-
"Michigan",
|
|
1783
|
-
"Minnesota",
|
|
1784
|
-
"Mississippi",
|
|
1785
|
-
"Missouri",
|
|
1786
|
-
"Montana",
|
|
1787
|
-
"Nebraska",
|
|
1788
|
-
"Nevada",
|
|
1789
|
-
"New Hampshire",
|
|
1790
|
-
"New Jersey",
|
|
1791
|
-
"New Mexico",
|
|
1792
|
-
"New York",
|
|
1793
|
-
"North Carolina",
|
|
1794
|
-
"North Dakota",
|
|
1795
|
-
"Ohio",
|
|
1796
|
-
"Oklahoma",
|
|
1797
|
-
"Oregon",
|
|
1798
|
-
"Pennsylvania",
|
|
1799
|
-
"Rhode Island",
|
|
1800
|
-
"South Carolina",
|
|
1801
|
-
"South Dakota",
|
|
1802
|
-
"Tennessee",
|
|
1803
|
-
"Texas",
|
|
1804
|
-
"Utah",
|
|
1805
|
-
"Vermont",
|
|
1806
|
-
"Virginia",
|
|
1807
|
-
"Washington",
|
|
1808
|
-
"West Virginia",
|
|
1809
|
-
"Wisconsin",
|
|
1810
|
-
"Wyoming"
|
|
1811
|
-
],
|
|
1812
|
-
"type": "datafilter",
|
|
1813
|
-
"orderedValues": [
|
|
1814
|
-
"United States",
|
|
1815
|
-
"Alabama",
|
|
1816
|
-
"Alaska",
|
|
1817
|
-
"Arizona",
|
|
1818
|
-
"Arkansas",
|
|
1819
|
-
"California",
|
|
1820
|
-
"Colorado",
|
|
1821
|
-
"Connecticut",
|
|
1822
|
-
"Delaware",
|
|
1823
|
-
"District Of Columbia",
|
|
1824
|
-
"Florida",
|
|
1825
|
-
"Georgia",
|
|
1826
|
-
"Hawaii",
|
|
1827
|
-
"Idaho",
|
|
1828
|
-
"Illinois",
|
|
1829
|
-
"Indiana",
|
|
1830
|
-
"Iowa",
|
|
1831
|
-
"Kansas",
|
|
1832
|
-
"Kentucky",
|
|
1833
|
-
"Louisiana",
|
|
1834
|
-
"Maine",
|
|
1835
|
-
"Maryland",
|
|
1836
|
-
"Massachusetts",
|
|
1837
|
-
"Michigan",
|
|
1838
|
-
"Minnesota",
|
|
1839
|
-
"Mississippi",
|
|
1840
|
-
"Missouri",
|
|
1841
|
-
"Montana",
|
|
1842
|
-
"Nebraska",
|
|
1843
|
-
"Nevada",
|
|
1844
|
-
"New Hampshire",
|
|
1845
|
-
"New Jersey",
|
|
1846
|
-
"New Mexico",
|
|
1847
|
-
"New York",
|
|
1848
|
-
"North Carolina",
|
|
1849
|
-
"North Dakota",
|
|
1850
|
-
"Ohio",
|
|
1851
|
-
"Oklahoma",
|
|
1852
|
-
"Oregon",
|
|
1853
|
-
"Pennsylvania",
|
|
1854
|
-
"Rhode Island",
|
|
1855
|
-
"South Carolina",
|
|
1856
|
-
"South Dakota",
|
|
1857
|
-
"Tennessee",
|
|
1858
|
-
"Texas",
|
|
1859
|
-
"Utah",
|
|
1860
|
-
"Vermont",
|
|
1861
|
-
"Virginia",
|
|
1862
|
-
"Washington",
|
|
1863
|
-
"West Virginia",
|
|
1864
|
-
"Wisconsin",
|
|
1865
|
-
"Wyoming"
|
|
1866
|
-
],
|
|
1867
|
-
"columnName": "M100_location",
|
|
1868
|
-
"order": "cust",
|
|
1869
|
-
"tier": 1
|
|
1870
|
-
},
|
|
1871
|
-
{
|
|
1872
|
-
"key": "Indicator:",
|
|
1873
|
-
"showDropdown": true,
|
|
1874
|
-
"values": [
|
|
1875
|
-
"Diabetes Cause of Death",
|
|
1876
|
-
"Cause-specific Deaths"
|
|
1877
|
-
],
|
|
1878
|
-
"type": "datafilter",
|
|
1879
|
-
"orderedValues": [
|
|
1880
|
-
"Diabetes Cause of Death",
|
|
1881
|
-
"Cause-specific Deaths"
|
|
1882
|
-
],
|
|
1883
|
-
"columnName": "M100_short_indicator_text",
|
|
1884
|
-
"order": "desc",
|
|
1885
|
-
"tier": 1
|
|
1886
|
-
}
|
|
1887
|
-
]
|
|
1888
|
-
},
|
|
1898
|
+
"label": "Deaths per 100,000",
|
|
1889
1899
|
"visualizations": {
|
|
1890
1900
|
"markup-include1758556325759": {
|
|
1891
1901
|
"filters": [],
|
|
@@ -2662,7 +2672,7 @@
|
|
|
2662
2672
|
"uid": "markup-include1758815584147",
|
|
2663
2673
|
"type": "markup-include",
|
|
2664
2674
|
"contentEditor": {
|
|
2665
|
-
"inlineHTML": "<p>
|
|
2675
|
+
"inlineHTML": "<p>{{M_footnote_text_to_define_short_text}}</p>\n<p>All are estimates except End Stage Renal Disease which are counts.</p>\n<p>{{M_datasource_footnotetext}}</p>\n<p>{{M_footnote_context1}}</p>\n<p>{{M_footnote_context2}}</p>\n<p>{{M_footnote_context3}}</p>\n<br>\n<header class=\"cove-component__header component__header mb-3 theme-blue mb-0\"><h2>Results by Age Group </h2></header>",
|
|
2666
2676
|
"markupVariables": [],
|
|
2667
2677
|
"showHeader": true,
|
|
2668
2678
|
"srcUrl": "#example",
|
|
@@ -3225,8 +3235,21 @@
|
|
|
3225
3235
|
"uid": "markup-include1758815877093",
|
|
3226
3236
|
"type": "markup-include",
|
|
3227
3237
|
"contentEditor": {
|
|
3228
|
-
"inlineHTML": "<
|
|
3229
|
-
"markupVariables": [
|
|
3238
|
+
"inlineHTML": "<button class=\"btn btn-primary\" style=\"line-height: 1.4em;\">\n<a style=\"color: white;\" target=\"_blank\" href=\"https://data.cdc.gov/Diabetes-Translation/Diabetes-Mortality-Query-1/dkhe-23uz/explore/query/SELECT%0A %60module_name%60%2C%0A %60module_indicator_name%60%2C%0A %60fips%60%2C%0A %60year%60%2C%0A %60location%60%2C%0A %60stratification1%60%2C%0A %60stratification_group1%60%2C%0A %60stratification2%60%2C%0A %60stratification_group2%60%2C%0A %60stratification_group2_label%60%2C%0A %60data_type%60%2C%0A %60data_type_label%60%2C%0A %60data_value%60%2C%0A %60short_indicator_text%60%2C%0A %60long_indicator_text%60%2C%0A %60gelolocation%60%0AWHERE%0A caseless_one_of%28%60location%60%2C %22{{location}}%22%29%0A AND caseless_one_of%28%60short_indicator_text%60%2C %22{{short_indicator_text}}%22%29%0AORDER BY %60location%60 DESC NULL LAST/page/filter\"><span class=\"text-left d-inline-block\">Download Results</span></a></button>",
|
|
3239
|
+
"markupVariables": [
|
|
3240
|
+
{
|
|
3241
|
+
"columnName": "M100_location",
|
|
3242
|
+
"conditions": [],
|
|
3243
|
+
"name": "location",
|
|
3244
|
+
"tag": "{{location}}"
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"columnName": "M100_short_indicator_text",
|
|
3248
|
+
"conditions": [],
|
|
3249
|
+
"name": "short_indicator_text",
|
|
3250
|
+
"tag": "{{short_indicator_text}}"
|
|
3251
|
+
}
|
|
3252
|
+
],
|
|
3230
3253
|
"showHeader": true,
|
|
3231
3254
|
"srcUrl": "#example",
|
|
3232
3255
|
"title": "",
|
|
@@ -3247,23 +3270,195 @@
|
|
|
3247
3270
|
"version": "4.25.8",
|
|
3248
3271
|
"migrations": {
|
|
3249
3272
|
"addColorMigration": true
|
|
3273
|
+
},
|
|
3274
|
+
"dataKey": "Attributable Deaths 100k",
|
|
3275
|
+
"dataDescription": {
|
|
3276
|
+
"horizontal": false,
|
|
3277
|
+
"series": false
|
|
3250
3278
|
}
|
|
3251
|
-
}
|
|
3252
|
-
},
|
|
3253
|
-
"rows": [
|
|
3254
|
-
{
|
|
3255
|
-
"columns": [
|
|
3256
|
-
{
|
|
3257
|
-
"width": 12,
|
|
3258
|
-
"widget": "markup-include1758556325759"
|
|
3259
|
-
}
|
|
3260
|
-
]
|
|
3261
3279
|
},
|
|
3262
|
-
{
|
|
3263
|
-
"
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3280
|
+
"markup-include1761674788205": {
|
|
3281
|
+
"filters": [],
|
|
3282
|
+
"filterBehavior": "Filter Change",
|
|
3283
|
+
"openModal": false,
|
|
3284
|
+
"uid": "markup-include1761674788205",
|
|
3285
|
+
"type": "markup-include",
|
|
3286
|
+
"contentEditor": {
|
|
3287
|
+
"inlineHTML": "<p>{{M_footnote_text_to_define_short_text}}</p>\n<p>All are estimates except End Stage Renal Disease which are counts.</p>\n<p>{{M_datasource_footnotetext}}</p>\n<p>{{M_footnote_context1}}</p>\n<p>{{M_footnote_context2}}</p>\n<p>{{M_footnote_context3}}</p>\n<p>{{M_footnote_context4}}</p>\n<p>{{M_footnote_context5}}</p>\n<p>{{M_footnote_context6}}</p>",
|
|
3288
|
+
"markupVariables": [],
|
|
3289
|
+
"showHeader": true,
|
|
3290
|
+
"srcUrl": "#example",
|
|
3291
|
+
"title": "",
|
|
3292
|
+
"useInlineHTML": true,
|
|
3293
|
+
"showNoDataMessage": false,
|
|
3294
|
+
"noDataMessageText": "No Data Available"
|
|
3295
|
+
},
|
|
3296
|
+
"theme": "theme-blue",
|
|
3297
|
+
"visual": {
|
|
3298
|
+
"border": false,
|
|
3299
|
+
"accent": false,
|
|
3300
|
+
"background": false,
|
|
3301
|
+
"hideBackgroundColor": false,
|
|
3302
|
+
"borderColorTheme": false
|
|
3303
|
+
},
|
|
3304
|
+
"showEditorPanel": true,
|
|
3305
|
+
"visualizationType": "markup-include",
|
|
3306
|
+
"version": "4.25.8",
|
|
3307
|
+
"migrations": {
|
|
3308
|
+
"addColorMigration": true
|
|
3309
|
+
}
|
|
3310
|
+
}
|
|
3311
|
+
},
|
|
3312
|
+
"dashboard": {
|
|
3313
|
+
"sharedFilters": [
|
|
3314
|
+
{
|
|
3315
|
+
"key": "Location:",
|
|
3316
|
+
"showDropdown": true,
|
|
3317
|
+
"values": [
|
|
3318
|
+
"United States",
|
|
3319
|
+
"Alabama",
|
|
3320
|
+
"Alaska",
|
|
3321
|
+
"Arizona",
|
|
3322
|
+
"Arkansas",
|
|
3323
|
+
"California",
|
|
3324
|
+
"Colorado",
|
|
3325
|
+
"Connecticut",
|
|
3326
|
+
"Delaware",
|
|
3327
|
+
"District Of Columbia",
|
|
3328
|
+
"Florida",
|
|
3329
|
+
"Georgia",
|
|
3330
|
+
"Hawaii",
|
|
3331
|
+
"Idaho",
|
|
3332
|
+
"Illinois",
|
|
3333
|
+
"Indiana",
|
|
3334
|
+
"Iowa",
|
|
3335
|
+
"Kansas",
|
|
3336
|
+
"Kentucky",
|
|
3337
|
+
"Louisiana",
|
|
3338
|
+
"Maine",
|
|
3339
|
+
"Maryland",
|
|
3340
|
+
"Massachusetts",
|
|
3341
|
+
"Michigan",
|
|
3342
|
+
"Minnesota",
|
|
3343
|
+
"Mississippi",
|
|
3344
|
+
"Missouri",
|
|
3345
|
+
"Montana",
|
|
3346
|
+
"Nebraska",
|
|
3347
|
+
"Nevada",
|
|
3348
|
+
"New Hampshire",
|
|
3349
|
+
"New Jersey",
|
|
3350
|
+
"New Mexico",
|
|
3351
|
+
"New York",
|
|
3352
|
+
"North Carolina",
|
|
3353
|
+
"North Dakota",
|
|
3354
|
+
"Ohio",
|
|
3355
|
+
"Oklahoma",
|
|
3356
|
+
"Oregon",
|
|
3357
|
+
"Pennsylvania",
|
|
3358
|
+
"Rhode Island",
|
|
3359
|
+
"South Carolina",
|
|
3360
|
+
"South Dakota",
|
|
3361
|
+
"Tennessee",
|
|
3362
|
+
"Texas",
|
|
3363
|
+
"Utah",
|
|
3364
|
+
"Vermont",
|
|
3365
|
+
"Virginia",
|
|
3366
|
+
"Washington",
|
|
3367
|
+
"West Virginia",
|
|
3368
|
+
"Wisconsin",
|
|
3369
|
+
"Wyoming"
|
|
3370
|
+
],
|
|
3371
|
+
"type": "datafilter",
|
|
3372
|
+
"orderedValues": [
|
|
3373
|
+
"United States",
|
|
3374
|
+
"Alabama",
|
|
3375
|
+
"Alaska",
|
|
3376
|
+
"Arizona",
|
|
3377
|
+
"Arkansas",
|
|
3378
|
+
"California",
|
|
3379
|
+
"Colorado",
|
|
3380
|
+
"Connecticut",
|
|
3381
|
+
"Delaware",
|
|
3382
|
+
"District Of Columbia",
|
|
3383
|
+
"Florida",
|
|
3384
|
+
"Georgia",
|
|
3385
|
+
"Hawaii",
|
|
3386
|
+
"Idaho",
|
|
3387
|
+
"Illinois",
|
|
3388
|
+
"Indiana",
|
|
3389
|
+
"Iowa",
|
|
3390
|
+
"Kansas",
|
|
3391
|
+
"Kentucky",
|
|
3392
|
+
"Louisiana",
|
|
3393
|
+
"Maine",
|
|
3394
|
+
"Maryland",
|
|
3395
|
+
"Massachusetts",
|
|
3396
|
+
"Michigan",
|
|
3397
|
+
"Minnesota",
|
|
3398
|
+
"Mississippi",
|
|
3399
|
+
"Missouri",
|
|
3400
|
+
"Montana",
|
|
3401
|
+
"Nebraska",
|
|
3402
|
+
"Nevada",
|
|
3403
|
+
"New Hampshire",
|
|
3404
|
+
"New Jersey",
|
|
3405
|
+
"New Mexico",
|
|
3406
|
+
"New York",
|
|
3407
|
+
"North Carolina",
|
|
3408
|
+
"North Dakota",
|
|
3409
|
+
"Ohio",
|
|
3410
|
+
"Oklahoma",
|
|
3411
|
+
"Oregon",
|
|
3412
|
+
"Pennsylvania",
|
|
3413
|
+
"Rhode Island",
|
|
3414
|
+
"South Carolina",
|
|
3415
|
+
"South Dakota",
|
|
3416
|
+
"Tennessee",
|
|
3417
|
+
"Texas",
|
|
3418
|
+
"Utah",
|
|
3419
|
+
"Vermont",
|
|
3420
|
+
"Virginia",
|
|
3421
|
+
"Washington",
|
|
3422
|
+
"West Virginia",
|
|
3423
|
+
"Wisconsin",
|
|
3424
|
+
"Wyoming"
|
|
3425
|
+
],
|
|
3426
|
+
"columnName": "M100_location",
|
|
3427
|
+
"order": "cust",
|
|
3428
|
+
"tier": 1
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
3431
|
+
"key": "Indicator:",
|
|
3432
|
+
"showDropdown": true,
|
|
3433
|
+
"values": [
|
|
3434
|
+
"Diabetes Cause of Death",
|
|
3435
|
+
"Cause-specific Deaths"
|
|
3436
|
+
],
|
|
3437
|
+
"type": "datafilter",
|
|
3438
|
+
"orderedValues": [
|
|
3439
|
+
"Diabetes Cause of Death",
|
|
3440
|
+
"Cause-specific Deaths"
|
|
3441
|
+
],
|
|
3442
|
+
"columnName": "M100_short_indicator_text",
|
|
3443
|
+
"order": "desc",
|
|
3444
|
+
"tier": 1
|
|
3445
|
+
}
|
|
3446
|
+
]
|
|
3447
|
+
},
|
|
3448
|
+
"rows": [
|
|
3449
|
+
{
|
|
3450
|
+
"columns": [
|
|
3451
|
+
{
|
|
3452
|
+
"width": 12,
|
|
3453
|
+
"widget": "markup-include1758556325759"
|
|
3454
|
+
}
|
|
3455
|
+
]
|
|
3456
|
+
},
|
|
3457
|
+
{
|
|
3458
|
+
"columns": [
|
|
3459
|
+
{
|
|
3460
|
+
"width": 12,
|
|
3461
|
+
"widget": "dashboardFilters1758556571904"
|
|
3267
3462
|
}
|
|
3268
3463
|
]
|
|
3269
3464
|
},
|
|
@@ -3330,16 +3525,34 @@
|
|
|
3330
3525
|
},
|
|
3331
3526
|
"dataKey": "Attributable Deaths 100k"
|
|
3332
3527
|
},
|
|
3528
|
+
{
|
|
3529
|
+
"columns": [
|
|
3530
|
+
{
|
|
3531
|
+
"width": 12,
|
|
3532
|
+
"widget": "markup-include1761674788205"
|
|
3533
|
+
}
|
|
3534
|
+
],
|
|
3535
|
+
"uuid": 1761674782202
|
|
3536
|
+
},
|
|
3333
3537
|
{
|
|
3334
3538
|
"columns": [
|
|
3335
3539
|
{
|
|
3336
3540
|
"width": 12,
|
|
3337
3541
|
"widget": "markup-include1758815877093"
|
|
3338
3542
|
}
|
|
3339
|
-
]
|
|
3543
|
+
],
|
|
3544
|
+
"dataDescription": {
|
|
3545
|
+
"horizontal": false,
|
|
3546
|
+
"series": false
|
|
3547
|
+
},
|
|
3548
|
+
"dataKey": "Attributable Deaths 100k",
|
|
3549
|
+
"uuid": 1761674782202
|
|
3340
3550
|
}
|
|
3341
3551
|
],
|
|
3342
|
-
"
|
|
3552
|
+
"type": "dashboard",
|
|
3553
|
+
"migrations": {
|
|
3554
|
+
"addColorMigration": true
|
|
3555
|
+
}
|
|
3343
3556
|
},
|
|
3344
3557
|
{
|
|
3345
3558
|
"label": "Years of Potential Life Lost",
|
|
@@ -3708,7 +3921,7 @@
|
|
|
3708
3921
|
"uid": "markup-include1758820722964",
|
|
3709
3922
|
"type": "markup-include",
|
|
3710
3923
|
"contentEditor": {
|
|
3711
|
-
"inlineHTML": "<p>Data Sources: 2013-2017 National Health Interview Survey, 2021 Behavioral Risk Factor Surveillance System, Arias, E., Xu, J. (2022). \"Provisional Life Expectancy Estimates for 2021.\"</p>\n<p>Notes: Average YPLLs due to diabetes are averaged across each age year in the age group. Total estimates represent the weighted average of the age/sex group estimates, where the weights represent the relative share of persons with diabetes accounted for by each group by state.</p>\n<p>Estimated numbers are rounded by group and may not add to totals.</p>",
|
|
3924
|
+
"inlineHTML": "<p>ATD = Attributable to Diabetes</p>\n<p>PWD = Persons with Diabetes</p>\n<p>All are estimates except End Stage Renal Disease which are counts.</p>\n<p>Data Sources: 2013-2017 National Health Interview Survey, 2021 Behavioral Risk Factor Surveillance System, Arias, E., Xu, J. (2022). \"Provisional Life Expectancy Estimates for 2021.\"</p>\n<p>Notes: Average YPLLs due to diabetes are averaged across each age year in the age group. Total estimates represent the weighted average of the age/sex group estimates, where the weights represent the relative share of persons with diabetes accounted for by each group by state.</p>\n<p>Estimated numbers are rounded by group and may not add to totals.</p>\n<p>Average YPLLs due to Diabetes: Years of Potential Life Lost, or YPLLs, is the difference in expected life expectancy between persons with diabetes and persons without diabetes. </p>\n<p>Total YPLLs due to Diabetes (in thousands): Reports the total number of YPLLs across all people with diabetes. </p>",
|
|
3712
3925
|
"markupVariables": [],
|
|
3713
3926
|
"showHeader": true,
|
|
3714
3927
|
"srcUrl": "#example",
|
|
@@ -4095,6 +4308,55 @@
|
|
|
4095
4308
|
"data": []
|
|
4096
4309
|
},
|
|
4097
4310
|
"dynamicMarginTop": 0
|
|
4311
|
+
},
|
|
4312
|
+
"markup-include1761675768841": {
|
|
4313
|
+
"filters": [],
|
|
4314
|
+
"filterBehavior": "Filter Change",
|
|
4315
|
+
"openModal": false,
|
|
4316
|
+
"uid": "markup-include1761675768841",
|
|
4317
|
+
"type": "markup-include",
|
|
4318
|
+
"contentEditor": {
|
|
4319
|
+
"inlineHTML": "<button class=\"btn btn-primary\" style=\"line-height: 1.4em;\">\n<a style=\"color: white;\" target=\"_blank\" href=\"https://data.cdc.gov/Diabetes-Translation/Diabetes-Mortality-Query-1/dkhe-23uz/explore/query/SELECT%0A%20%20%60module_name%60%2C%0A%20%20%60module_indicator_name%60%2C%0A%20%20%60fips%60%2C%0A%20%20%60year%60%2C%0A%20%20%60location%60%2C%0A%20%20%60stratification1%60%2C%0A%20%20%60stratification_group1%60%2C%0A%20%20%60stratification2%60%2C%0A%20%20%60stratification_group2%60%2C%0A%20%20%60stratification_group2_label%60%2C%0A%20%20%60data_type%60%2C%0A%20%20%60data_type_label%60%2C%0A%20%20%60data_value%60%2C%0A%20%20%60short_indicator_text%60%2C%0A%20%20%60long_indicator_text%60%2C%0A%20%20%60gelolocation%60%0AWHERE%0A%20%20caseless_one_of%28%60location%60%2C%20%22{{location}}%22%29%0A%20%20AND%20caseless_one_of%28%0A%20%20%20%20%60short_indicator_text%60%2C%0A%20%20%20%20%22Years%20of%20Potential%20Life%20Lost%20%28YPLL%29%22%0A%20%20%29%0AORDER%20BY%20%60location%60%20DESC%20NULL%20LAST/page/filter\"><span class=\"text-left d-inline-block\">Download Results</span></a></button>",
|
|
4320
|
+
"markupVariables": [
|
|
4321
|
+
{
|
|
4322
|
+
"columnName": "yll_location",
|
|
4323
|
+
"conditions": [],
|
|
4324
|
+
"name": "location",
|
|
4325
|
+
"tag": "{{location}}"
|
|
4326
|
+
},
|
|
4327
|
+
{
|
|
4328
|
+
"columnName": "yll_short_indicator_text",
|
|
4329
|
+
"conditions": [],
|
|
4330
|
+
"name": "short_indicator_text",
|
|
4331
|
+
"tag": "{{short_indicator_text}}"
|
|
4332
|
+
}
|
|
4333
|
+
],
|
|
4334
|
+
"showHeader": true,
|
|
4335
|
+
"srcUrl": "#example",
|
|
4336
|
+
"title": "",
|
|
4337
|
+
"useInlineHTML": true,
|
|
4338
|
+
"showNoDataMessage": false,
|
|
4339
|
+
"noDataMessageText": "No Data Available"
|
|
4340
|
+
},
|
|
4341
|
+
"theme": "theme-blue",
|
|
4342
|
+
"visual": {
|
|
4343
|
+
"border": false,
|
|
4344
|
+
"accent": false,
|
|
4345
|
+
"background": false,
|
|
4346
|
+
"hideBackgroundColor": false,
|
|
4347
|
+
"borderColorTheme": false
|
|
4348
|
+
},
|
|
4349
|
+
"showEditorPanel": true,
|
|
4350
|
+
"visualizationType": "markup-include",
|
|
4351
|
+
"dataKey": "YPLL",
|
|
4352
|
+
"dataDescription": {
|
|
4353
|
+
"horizontal": false,
|
|
4354
|
+
"series": false
|
|
4355
|
+
},
|
|
4356
|
+
"version": "4.25.8",
|
|
4357
|
+
"migrations": {
|
|
4358
|
+
"addColorMigration": true
|
|
4359
|
+
}
|
|
4098
4360
|
}
|
|
4099
4361
|
},
|
|
4100
4362
|
"dashboard": {
|
|
@@ -4251,24 +4513,18 @@
|
|
|
4251
4513
|
"columns": [
|
|
4252
4514
|
{
|
|
4253
4515
|
"width": 12,
|
|
4254
|
-
"widget": "chart1760629946773"
|
|
4255
|
-
"toggleName": "Table"
|
|
4516
|
+
"widget": "chart1760629946773"
|
|
4256
4517
|
},
|
|
4257
4518
|
{
|
|
4258
4519
|
"width": 12,
|
|
4259
4520
|
"widget": "table1758820634133"
|
|
4260
4521
|
},
|
|
4261
4522
|
{
|
|
4262
|
-
"width": 12
|
|
4263
|
-
"widget": null
|
|
4523
|
+
"width": 12
|
|
4264
4524
|
}
|
|
4265
4525
|
],
|
|
4266
4526
|
"toggle": true,
|
|
4267
|
-
"
|
|
4268
|
-
"horizontal": false,
|
|
4269
|
-
"series": false
|
|
4270
|
-
},
|
|
4271
|
-
"dataKey": "YPLL"
|
|
4527
|
+
"uuid": 1760984730535
|
|
4272
4528
|
},
|
|
4273
4529
|
{
|
|
4274
4530
|
"columns": [
|
|
@@ -4276,7 +4532,21 @@
|
|
|
4276
4532
|
"width": 12,
|
|
4277
4533
|
"widget": "markup-include1758820722964"
|
|
4278
4534
|
}
|
|
4279
|
-
]
|
|
4535
|
+
],
|
|
4536
|
+
"uuid": 1760984730535
|
|
4537
|
+
},
|
|
4538
|
+
{
|
|
4539
|
+
"columns": [
|
|
4540
|
+
{
|
|
4541
|
+
"width": 12,
|
|
4542
|
+
"widget": "markup-include1761675768841"
|
|
4543
|
+
}
|
|
4544
|
+
],
|
|
4545
|
+
"dataDescription": {
|
|
4546
|
+
"horizontal": false,
|
|
4547
|
+
"series": false
|
|
4548
|
+
},
|
|
4549
|
+
"dataKey": "YPLL"
|
|
4280
4550
|
}
|
|
4281
4551
|
],
|
|
4282
4552
|
"type": "dashboard",
|
|
@@ -4650,8 +4920,21 @@
|
|
|
4650
4920
|
"uid": "markup-include1758820841602",
|
|
4651
4921
|
"type": "markup-include",
|
|
4652
4922
|
"contentEditor": {
|
|
4653
|
-
"inlineHTML": "<p>Data Sources: 2013-2017 National Health Interview Survey, 2021 Behavioral Risk Factor Surveillance System, Arias, E., Xu, J. (2022). \"Provisional Life Expectancy Estimates for 2021.\"</p>\n<p>Notes: Average QALYs lost due to diabetes are averaged across each age year in the age group. Total estimates represent the weighted average of the age/sex group estimates, where the weights represent the relative share of persons with diabetes accounted for by each group.</p>\n<p>Estimated numbers are rounded by group and may not add to totals.</p>",
|
|
4654
|
-
"markupVariables": [
|
|
4923
|
+
"inlineHTML": "<p>ATD = Attributable to Diabetes</p>\n<p>PWD = Persons with Diabetes</p>\n<p>All are estimates except End Stage Renal Disease which are counts.</p>\n<p>Data Sources: 2013-2017 National Health Interview Survey, 2021 Behavioral Risk Factor Surveillance System, Arias, E., Xu, J. (2022). \"Provisional Life Expectancy Estimates for 2021.\"</p>\n<p>Notes: Average QALYs lost due to diabetes are averaged across each age year in the age group. Total estimates represent the weighted average of the age/sex group estimates, where the weights represent the relative share of persons with diabetes accounted for by each group.</p>\n<p>Estimated numbers are rounded by group and may not add to totals.</p>\n<p>Average QALYs Lost due to Diabetes: Quality Adjusted Life Year, or QALYs, is a measure that accounts for early mortality and morbidity caused by diabetes by assigning patient utility values to health states and then summing utility values for each period over an appropriate time horizon (e.g., a person's remaining life expectancy). </p>\n<p>Total QALYs Lost due to Diabetes (in thousands): Reports the total number of QALYs lost across all people with diabetes.</p>",
|
|
4924
|
+
"markupVariables": [
|
|
4925
|
+
{
|
|
4926
|
+
"columnName": "qaly_datasource_footnotetext",
|
|
4927
|
+
"conditions": [],
|
|
4928
|
+
"name": "Footnote",
|
|
4929
|
+
"tag": "{{Footnote}}"
|
|
4930
|
+
},
|
|
4931
|
+
{
|
|
4932
|
+
"columnName": "qaly_Footnote_text_to_define_short_text",
|
|
4933
|
+
"conditions": [],
|
|
4934
|
+
"name": "Note",
|
|
4935
|
+
"tag": "{{Note}}"
|
|
4936
|
+
}
|
|
4937
|
+
],
|
|
4655
4938
|
"showHeader": true,
|
|
4656
4939
|
"srcUrl": "#example",
|
|
4657
4940
|
"title": "",
|
|
@@ -4672,6 +4955,11 @@
|
|
|
4672
4955
|
"version": "4.25.8",
|
|
4673
4956
|
"migrations": {
|
|
4674
4957
|
"addColorMigration": true
|
|
4958
|
+
},
|
|
4959
|
+
"dataKey": "QALY",
|
|
4960
|
+
"dataDescription": {
|
|
4961
|
+
"horizontal": false,
|
|
4962
|
+
"series": false
|
|
4675
4963
|
}
|
|
4676
4964
|
},
|
|
4677
4965
|
"chart1760631244255": {
|
|
@@ -5037,6 +5325,55 @@
|
|
|
5037
5325
|
"data": []
|
|
5038
5326
|
},
|
|
5039
5327
|
"dynamicMarginTop": 0
|
|
5328
|
+
},
|
|
5329
|
+
"markup-include1761675991569": {
|
|
5330
|
+
"filters": [],
|
|
5331
|
+
"filterBehavior": "Filter Change",
|
|
5332
|
+
"openModal": false,
|
|
5333
|
+
"uid": "markup-include1761675991569",
|
|
5334
|
+
"type": "markup-include",
|
|
5335
|
+
"contentEditor": {
|
|
5336
|
+
"inlineHTML": "<button class=\"btn btn-primary\" style=\"line-height: 1.4em;\">\n<a style=\"color: white;\" target=\"_blank\" href=\"https://data.cdc.gov/Diabetes-Translation/Diabetes-Mortality-Query-1/dkhe-23uz/explore/query/SELECT%0A%20%20%60module_name%60%2C%0A%20%20%60module_indicator_name%60%2C%0A%20%20%60fips%60%2C%0A%20%20%60year%60%2C%0A%20%20%60location%60%2C%0A%20%20%60stratification1%60%2C%0A%20%20%60stratification_group1%60%2C%0A%20%20%60stratification2%60%2C%0A%20%20%60stratification_group2%60%2C%0A%20%20%60stratification_group2_label%60%2C%0A%20%20%60data_type%60%2C%0A%20%20%60data_type_label%60%2C%0A%20%20%60data_value%60%2C%0A%20%20%60short_indicator_text%60%2C%0A%20%20%60long_indicator_text%60%2C%0A%20%20%60gelolocation%60%0AWHERE%0A%20%20caseless_one_of%28%60location%60%2C%20%22{{location}}%22%29%0A%20%20AND%20caseless_one_of%28%0A%20%20%20%20%60short_indicator_text%60%2C%0A%20%20%20%20%22Quality%20Adjusted%20Life%20Years%20Lost%22%0A%20%20%29%0AORDER%20BY%20%60location%60%20DESC%20NULL%20LAST/page/filter\"><span class=\"text-left d-inline-block\">Download Results</span></a></button>",
|
|
5337
|
+
"markupVariables": [
|
|
5338
|
+
{
|
|
5339
|
+
"columnName": "qaly_location",
|
|
5340
|
+
"conditions": [],
|
|
5341
|
+
"name": "location",
|
|
5342
|
+
"tag": "{{location}}"
|
|
5343
|
+
},
|
|
5344
|
+
{
|
|
5345
|
+
"columnName": "qaly_short_indicator_text",
|
|
5346
|
+
"conditions": [],
|
|
5347
|
+
"name": "short_indicator_text",
|
|
5348
|
+
"tag": "{{short_indicator_text}}"
|
|
5349
|
+
}
|
|
5350
|
+
],
|
|
5351
|
+
"showHeader": true,
|
|
5352
|
+
"srcUrl": "#example",
|
|
5353
|
+
"title": "",
|
|
5354
|
+
"useInlineHTML": true,
|
|
5355
|
+
"showNoDataMessage": false,
|
|
5356
|
+
"noDataMessageText": "No Data Available"
|
|
5357
|
+
},
|
|
5358
|
+
"theme": "theme-blue",
|
|
5359
|
+
"visual": {
|
|
5360
|
+
"border": false,
|
|
5361
|
+
"accent": false,
|
|
5362
|
+
"background": false,
|
|
5363
|
+
"hideBackgroundColor": false,
|
|
5364
|
+
"borderColorTheme": false
|
|
5365
|
+
},
|
|
5366
|
+
"showEditorPanel": true,
|
|
5367
|
+
"visualizationType": "markup-include",
|
|
5368
|
+
"dataKey": "QALY",
|
|
5369
|
+
"dataDescription": {
|
|
5370
|
+
"horizontal": false,
|
|
5371
|
+
"series": false
|
|
5372
|
+
},
|
|
5373
|
+
"version": "4.25.8",
|
|
5374
|
+
"migrations": {
|
|
5375
|
+
"addColorMigration": true
|
|
5376
|
+
}
|
|
5040
5377
|
}
|
|
5041
5378
|
},
|
|
5042
5379
|
"dashboard": {
|
|
@@ -5194,19 +5531,27 @@
|
|
|
5194
5531
|
{
|
|
5195
5532
|
"width": 12,
|
|
5196
5533
|
"widget": "chart1760631244255",
|
|
5197
|
-
"toggleName": "
|
|
5534
|
+
"toggleName": "Chart"
|
|
5198
5535
|
},
|
|
5199
5536
|
{
|
|
5200
5537
|
"width": 12,
|
|
5201
|
-
"widget": "table1758820827850"
|
|
5202
|
-
"toggleName": "Chart"
|
|
5538
|
+
"widget": "table1758820827850"
|
|
5203
5539
|
},
|
|
5540
|
+
{
|
|
5541
|
+
"width": 12
|
|
5542
|
+
}
|
|
5543
|
+
],
|
|
5544
|
+
"uuid": 1760984744680,
|
|
5545
|
+
"toggle": true
|
|
5546
|
+
},
|
|
5547
|
+
{
|
|
5548
|
+
"columns": [
|
|
5204
5549
|
{
|
|
5205
5550
|
"width": 12,
|
|
5206
|
-
"widget":
|
|
5551
|
+
"widget": "markup-include1758820841602"
|
|
5207
5552
|
}
|
|
5208
5553
|
],
|
|
5209
|
-
"
|
|
5554
|
+
"uuid": 1760984744680,
|
|
5210
5555
|
"dataDescription": {
|
|
5211
5556
|
"horizontal": false,
|
|
5212
5557
|
"series": false
|
|
@@ -5217,9 +5562,14 @@
|
|
|
5217
5562
|
"columns": [
|
|
5218
5563
|
{
|
|
5219
5564
|
"width": 12,
|
|
5220
|
-
"widget": "markup-
|
|
5565
|
+
"widget": "markup-include1761675991569"
|
|
5221
5566
|
}
|
|
5222
|
-
]
|
|
5567
|
+
],
|
|
5568
|
+
"dataDescription": {
|
|
5569
|
+
"horizontal": false,
|
|
5570
|
+
"series": false
|
|
5571
|
+
},
|
|
5572
|
+
"dataKey": "QALY"
|
|
5223
5573
|
}
|
|
5224
5574
|
],
|
|
5225
5575
|
"type": "dashboard",
|
|
@@ -5228,5 +5578,5 @@
|
|
|
5228
5578
|
}
|
|
5229
5579
|
}
|
|
5230
5580
|
],
|
|
5231
|
-
"uuid":
|
|
5581
|
+
"uuid": 1761679531688
|
|
5232
5582
|
}
|