@cdc/map 4.24.11 → 4.24.12-2
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/cdcmap.js +34008 -33475
- package/examples/default-geocode.json +13 -4
- package/examples/default-usa-regions.json +267 -117
- package/examples/example-city-state.json +6 -3
- package/examples/pattern.json +861 -0
- package/examples/private/DEV-9989.json +229 -0
- package/examples/private/ardi.json +180 -0
- package/examples/private/colors 2.json +416 -0
- package/examples/private/colors.json +416 -0
- package/examples/private/colors.json.zip +0 -0
- package/examples/private/customColors.json +45348 -0
- package/examples/private/default-patterns.json +867 -0
- package/examples/private/test.json +1632 -0
- package/index.html +4 -5
- package/package.json +3 -3
- package/src/CdcMap.tsx +82 -79
- package/src/_stories/{CdcMapLegend.stories.tsx → CdcMap.Legend.Gradient.stories.tsx} +1 -20
- package/src/_stories/CdcMap.Legend.stories.tsx +40 -0
- package/src/_stories/CdcMap.Patterns.stories.tsx +29 -0
- package/src/_stories/CdcMap.stories.tsx +59 -0
- package/src/_stories/UsaMap.NoData.stories.tsx +19 -0
- package/src/_stories/_mock/custom-layer-map.json +1117 -0
- package/src/_stories/_mock/default-patterns.json +865 -0
- package/src/_stories/_mock/example-city-state.json +858 -0
- package/src/components/CityList.tsx +5 -2
- package/src/components/EditorPanel/components/EditorPanel.tsx +39 -256
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +1 -1
- package/src/components/Legend/components/Legend.tsx +22 -6
- package/src/components/Legend/components/index.scss +16 -23
- package/src/components/UsaMap/components/SingleState/SingleState.CountyOutput.tsx +40 -6
- package/src/components/UsaMap/components/SingleState/SingleState.StateOutput.tsx +10 -2
- package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +1 -1
- package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +14 -13
- package/src/components/UsaMap/components/UsaMap.County.tsx +11 -13
- package/src/components/UsaMap/components/UsaMap.Region.tsx +59 -16
- package/src/components/UsaMap/components/UsaMap.SingleState.tsx +2 -1
- package/src/components/UsaMap/components/UsaMap.State.tsx +58 -60
- package/src/components/WorldMap/WorldMap.tsx +77 -16
- package/src/data/initial-state.js +2 -1
- package/src/helpers/applyColorToLegend.ts +80 -0
- package/src/helpers/colors.ts +23 -0
- package/src/hooks/useTooltip.ts +9 -6
- package/src/scss/filters.scss +0 -3
- package/src/scss/main.scss +0 -1
- package/src/scss/map.scss +11 -59
- package/src/types/MapConfig.ts +7 -1
- package/src/types/MapContext.ts +1 -0
- package/examples/default-patterns.json +0 -579
- package/src/scss/datatable.scss +0 -6
|
@@ -0,0 +1,1632 @@
|
|
|
1
|
+
{
|
|
2
|
+
"annotations": [],
|
|
3
|
+
"general": {
|
|
4
|
+
"geoType": "us",
|
|
5
|
+
"noStateFoundMessage": "Map Unavailable",
|
|
6
|
+
"annotationDropdownText": "Annotations",
|
|
7
|
+
"geoBorderColor": "darkGray",
|
|
8
|
+
"headerColor": "theme-blue",
|
|
9
|
+
"title": "Explore by Topic Map",
|
|
10
|
+
"showTitle": false,
|
|
11
|
+
"showSidebar": true,
|
|
12
|
+
"showDownloadButton": true,
|
|
13
|
+
"showDownloadMediaButton": false,
|
|
14
|
+
"displayAsHex": false,
|
|
15
|
+
"displayStateLabels": true,
|
|
16
|
+
"territoriesLabel": "Territories",
|
|
17
|
+
"territoriesAlwaysShow": false,
|
|
18
|
+
"language": "en",
|
|
19
|
+
"geoLabelOverride": "",
|
|
20
|
+
"hasRegions": false,
|
|
21
|
+
"fullBorder": false,
|
|
22
|
+
"type": "data",
|
|
23
|
+
"convertFipsCodes": true,
|
|
24
|
+
"palette": {
|
|
25
|
+
"isReversed": false
|
|
26
|
+
},
|
|
27
|
+
"allowMapZoom": true,
|
|
28
|
+
"hideGeoColumnInTooltip": false,
|
|
29
|
+
"hidePrimaryColumnInTooltip": false,
|
|
30
|
+
"statePicked": {
|
|
31
|
+
"fipsCode": "01",
|
|
32
|
+
"stateName": "Alabama"
|
|
33
|
+
},
|
|
34
|
+
"expandDataTable": false,
|
|
35
|
+
"subtext": "<strong>Data Source:</strong> <a>Behavioral Risk Factor Surveillance System (BRFSS)</a>",
|
|
36
|
+
"footnotes": "<p>The legend quantiles in the map are based on the minimum and maximum data values for the selected search criteria. These quantiles may update with the change in search criteria.</p>\n\n<p class=\"mt-2\">MMSA data belonging to territories are not displayed on the map. Please visit the Chart or Table view for territories MMSA data.</p>",
|
|
37
|
+
"showDownloadImgButton": true
|
|
38
|
+
},
|
|
39
|
+
"type": "map",
|
|
40
|
+
"color": "yelloworangebrown",
|
|
41
|
+
"columns": {
|
|
42
|
+
"geo": {
|
|
43
|
+
"name": "State",
|
|
44
|
+
"label": "Location",
|
|
45
|
+
"tooltip": false,
|
|
46
|
+
"dataTable": true
|
|
47
|
+
},
|
|
48
|
+
"primary": {
|
|
49
|
+
"dataTable": false,
|
|
50
|
+
"tooltip": true,
|
|
51
|
+
"prefix": "",
|
|
52
|
+
"suffix": "%",
|
|
53
|
+
"name": "Percentage",
|
|
54
|
+
"label": "Percentage",
|
|
55
|
+
"roundToPlace": "1"
|
|
56
|
+
},
|
|
57
|
+
"navigate": {
|
|
58
|
+
"name": ""
|
|
59
|
+
},
|
|
60
|
+
"latitude": {
|
|
61
|
+
"name": ""
|
|
62
|
+
},
|
|
63
|
+
"longitude": {
|
|
64
|
+
"name": ""
|
|
65
|
+
},
|
|
66
|
+
"additionalColumn1": {
|
|
67
|
+
"label": "95% Confidence Interval",
|
|
68
|
+
"dataTable": false,
|
|
69
|
+
"tooltips": false,
|
|
70
|
+
"prefix": "",
|
|
71
|
+
"suffix": "",
|
|
72
|
+
"name": "95%_CI",
|
|
73
|
+
"tooltip": true
|
|
74
|
+
},
|
|
75
|
+
"additionalColumn2": {
|
|
76
|
+
"label": "Response",
|
|
77
|
+
"dataTable": false,
|
|
78
|
+
"tooltips": false,
|
|
79
|
+
"prefix": "",
|
|
80
|
+
"suffix": "",
|
|
81
|
+
"name": "Response",
|
|
82
|
+
"tooltip": true
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"legend": {
|
|
86
|
+
"descriptions": {},
|
|
87
|
+
"specialClasses": [
|
|
88
|
+
{
|
|
89
|
+
"key": "Percentage",
|
|
90
|
+
"value": "N/A"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"unified": false,
|
|
94
|
+
"singleColumn": false,
|
|
95
|
+
"singleRow": true,
|
|
96
|
+
"verticalSorted": false,
|
|
97
|
+
"showSpecialClassesLast": false,
|
|
98
|
+
"dynamicDescription": false,
|
|
99
|
+
"type": "equalnumber",
|
|
100
|
+
"numberOfItems": 4,
|
|
101
|
+
"position": "bottom",
|
|
102
|
+
"title": "",
|
|
103
|
+
"style": "boxes",
|
|
104
|
+
"subStyle": "linear blocks",
|
|
105
|
+
"tickRotation": "",
|
|
106
|
+
"singleColumnLegend": false,
|
|
107
|
+
"hideBorder": false,
|
|
108
|
+
"categoryValuesOrder": [
|
|
109
|
+
"40.7000-48.3000"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
"filters": [],
|
|
113
|
+
"table": {
|
|
114
|
+
"wrapColumns": false,
|
|
115
|
+
"label": "Data Table",
|
|
116
|
+
"expanded": false,
|
|
117
|
+
"limitHeight": false,
|
|
118
|
+
"height": "",
|
|
119
|
+
"caption": "",
|
|
120
|
+
"showDownloadUrl": false,
|
|
121
|
+
"showDataTableLink": false,
|
|
122
|
+
"showFullGeoNameInCSV": false,
|
|
123
|
+
"forceDisplay": false,
|
|
124
|
+
"download": true,
|
|
125
|
+
"indexLabel": "",
|
|
126
|
+
"showDownloadLinkBelow": false
|
|
127
|
+
},
|
|
128
|
+
"tooltips": {
|
|
129
|
+
"appearanceType": "hover",
|
|
130
|
+
"linkLabel": "Learn More",
|
|
131
|
+
"capitalizeLabels": true,
|
|
132
|
+
"opacity": 90
|
|
133
|
+
},
|
|
134
|
+
"runtime": {
|
|
135
|
+
"editorErrorMessage": []
|
|
136
|
+
},
|
|
137
|
+
"visual": {
|
|
138
|
+
"minBubbleSize": 1,
|
|
139
|
+
"maxBubbleSize": 20,
|
|
140
|
+
"extraBubbleBorder": false,
|
|
141
|
+
"cityStyle": "circle",
|
|
142
|
+
"cityStyleLabel": "",
|
|
143
|
+
"showBubbleZeros": false,
|
|
144
|
+
"additionalCityStyles": [],
|
|
145
|
+
"geoCodeCircleSize": 8
|
|
146
|
+
},
|
|
147
|
+
"mapPosition": {
|
|
148
|
+
"coordinates": [
|
|
149
|
+
0,
|
|
150
|
+
30
|
|
151
|
+
],
|
|
152
|
+
"zoom": 1
|
|
153
|
+
},
|
|
154
|
+
"map": {
|
|
155
|
+
"layers": [],
|
|
156
|
+
"patterns": []
|
|
157
|
+
},
|
|
158
|
+
"hexMap": {
|
|
159
|
+
"type": "",
|
|
160
|
+
"shapeGroups": [
|
|
161
|
+
{
|
|
162
|
+
"legendTitle": "",
|
|
163
|
+
"legendDescription": "",
|
|
164
|
+
"items": [
|
|
165
|
+
{
|
|
166
|
+
"key": "",
|
|
167
|
+
"shape": "Arrow Up",
|
|
168
|
+
"column": "",
|
|
169
|
+
"operator": "=",
|
|
170
|
+
"value": ""
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
}
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
"filterBehavior": "Filter Change",
|
|
177
|
+
"filterIntro": "",
|
|
178
|
+
"openModal": true,
|
|
179
|
+
"data": [
|
|
180
|
+
{
|
|
181
|
+
"95%_CI": "N/A",
|
|
182
|
+
"Category": "Age Group",
|
|
183
|
+
"Category_Order": "3",
|
|
184
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
185
|
+
"DataSource": "BRFSS",
|
|
186
|
+
"Data_Type": "Crude Prevalence",
|
|
187
|
+
"Dataset": "Nationwide",
|
|
188
|
+
"Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
|
|
189
|
+
"GeoLocation_Lat": "N/A",
|
|
190
|
+
"GeoLocation_Long": "N/A",
|
|
191
|
+
"High_CI": "N/A",
|
|
192
|
+
"LocationCategory": "States",
|
|
193
|
+
"Low_CI": "N/A",
|
|
194
|
+
"Percentage": "N/A",
|
|
195
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
196
|
+
"Response": "Neither overweight nor obese (BMI le 24.9)",
|
|
197
|
+
"Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
|
|
198
|
+
"State": "Alaska",
|
|
199
|
+
"State_Abbr": "AK",
|
|
200
|
+
"Subcategory": "18-24",
|
|
201
|
+
"Subcategory_Filter": "18-24",
|
|
202
|
+
"Subcategory_Order": "4",
|
|
203
|
+
"Topic": "BMI Categories",
|
|
204
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
205
|
+
"Year": "1995",
|
|
206
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
207
|
+
"n": "57"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"95%_CI": "42.8-57.2",
|
|
211
|
+
"Category": "Age Group",
|
|
212
|
+
"Category_Order": "3",
|
|
213
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
214
|
+
"DataSource": "BRFSS",
|
|
215
|
+
"Data_Type": "Crude Prevalence",
|
|
216
|
+
"Dataset": "Nationwide",
|
|
217
|
+
"Footnotes": "N/A",
|
|
218
|
+
"GeoLocation_Lat": "N/A",
|
|
219
|
+
"GeoLocation_Long": "N/A",
|
|
220
|
+
"High_CI": "57.2",
|
|
221
|
+
"LocationCategory": "States",
|
|
222
|
+
"Low_CI": "42.8",
|
|
223
|
+
"Percentage": 50,
|
|
224
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
225
|
+
"Response": "Neither overweight nor obese (BMI le 24.9)",
|
|
226
|
+
"Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
|
|
227
|
+
"State": "Alaska",
|
|
228
|
+
"State_Abbr": "AK",
|
|
229
|
+
"Subcategory": "25-34",
|
|
230
|
+
"Subcategory_Filter": "25-34",
|
|
231
|
+
"Subcategory_Order": "7",
|
|
232
|
+
"Topic": "BMI Categories",
|
|
233
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
234
|
+
"Year": "1995",
|
|
235
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
236
|
+
"n": "164"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"95%_CI": "39.1-53.3",
|
|
240
|
+
"Category": "Age Group",
|
|
241
|
+
"Category_Order": "3",
|
|
242
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
243
|
+
"DataSource": "BRFSS",
|
|
244
|
+
"Data_Type": "Crude Prevalence",
|
|
245
|
+
"Dataset": "Nationwide",
|
|
246
|
+
"Footnotes": "N/A",
|
|
247
|
+
"GeoLocation_Lat": "N/A",
|
|
248
|
+
"GeoLocation_Long": "N/A",
|
|
249
|
+
"High_CI": "53.3",
|
|
250
|
+
"LocationCategory": "States",
|
|
251
|
+
"Low_CI": "39.1",
|
|
252
|
+
"Percentage": 46.2,
|
|
253
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
254
|
+
"Response": "Neither overweight nor obese (BMI le 24.9)",
|
|
255
|
+
"Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
|
|
256
|
+
"State": "Alaska",
|
|
257
|
+
"State_Abbr": "AK",
|
|
258
|
+
"Subcategory": "35-44",
|
|
259
|
+
"Subcategory_Filter": "35-44",
|
|
260
|
+
"Subcategory_Order": "10",
|
|
261
|
+
"Topic": "BMI Categories",
|
|
262
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
263
|
+
"Year": "1995",
|
|
264
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
265
|
+
"n": "207"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"95%_CI": "23.6-39.6",
|
|
269
|
+
"Category": "Age Group",
|
|
270
|
+
"Category_Order": "3",
|
|
271
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
272
|
+
"DataSource": "BRFSS",
|
|
273
|
+
"Data_Type": "Crude Prevalence",
|
|
274
|
+
"Dataset": "Nationwide",
|
|
275
|
+
"Footnotes": "N/A",
|
|
276
|
+
"GeoLocation_Lat": "N/A",
|
|
277
|
+
"GeoLocation_Long": "N/A",
|
|
278
|
+
"High_CI": "39.6",
|
|
279
|
+
"LocationCategory": "States",
|
|
280
|
+
"Low_CI": "23.6",
|
|
281
|
+
"Percentage": 31.6,
|
|
282
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
283
|
+
"Response": "Neither overweight nor obese (BMI le 24.9)",
|
|
284
|
+
"Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
|
|
285
|
+
"State": "Alaska",
|
|
286
|
+
"State_Abbr": "AK",
|
|
287
|
+
"Subcategory": "45-54",
|
|
288
|
+
"Subcategory_Filter": "45-54",
|
|
289
|
+
"Subcategory_Order": "14",
|
|
290
|
+
"Topic": "BMI Categories",
|
|
291
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
292
|
+
"Year": "1995",
|
|
293
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
294
|
+
"n": "98"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"95%_CI": "N/A",
|
|
298
|
+
"Category": "Age Group",
|
|
299
|
+
"Category_Order": "3",
|
|
300
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
301
|
+
"DataSource": "BRFSS",
|
|
302
|
+
"Data_Type": "Crude Prevalence",
|
|
303
|
+
"Dataset": "Nationwide",
|
|
304
|
+
"Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
|
|
305
|
+
"GeoLocation_Lat": "N/A",
|
|
306
|
+
"GeoLocation_Long": "N/A",
|
|
307
|
+
"High_CI": "N/A",
|
|
308
|
+
"LocationCategory": "States",
|
|
309
|
+
"Low_CI": "N/A",
|
|
310
|
+
"Percentage": "N/A",
|
|
311
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
312
|
+
"Response": "Neither overweight nor obese (BMI le 24.9)",
|
|
313
|
+
"Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
|
|
314
|
+
"State": "Alaska",
|
|
315
|
+
"State_Abbr": "AK",
|
|
316
|
+
"Subcategory": "55-64",
|
|
317
|
+
"Subcategory_Filter": "55-64",
|
|
318
|
+
"Subcategory_Order": "18",
|
|
319
|
+
"Topic": "BMI Categories",
|
|
320
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
321
|
+
"Year": "1995",
|
|
322
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
323
|
+
"n": "55"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"95%_CI": "N/A",
|
|
327
|
+
"Category": "Age Group",
|
|
328
|
+
"Category_Order": "3",
|
|
329
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
330
|
+
"DataSource": "BRFSS",
|
|
331
|
+
"Data_Type": "Crude Prevalence",
|
|
332
|
+
"Dataset": "Nationwide",
|
|
333
|
+
"Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
|
|
334
|
+
"GeoLocation_Lat": "N/A",
|
|
335
|
+
"GeoLocation_Long": "N/A",
|
|
336
|
+
"High_CI": "N/A",
|
|
337
|
+
"LocationCategory": "States",
|
|
338
|
+
"Low_CI": "N/A",
|
|
339
|
+
"Percentage": "N/A",
|
|
340
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
341
|
+
"Response": "Neither overweight nor obese (BMI le 24.9)",
|
|
342
|
+
"Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
|
|
343
|
+
"State": "Alaska",
|
|
344
|
+
"State_Abbr": "AK",
|
|
345
|
+
"Subcategory": "65+",
|
|
346
|
+
"Subcategory_Filter": "65+",
|
|
347
|
+
"Subcategory_Order": "23",
|
|
348
|
+
"Topic": "BMI Categories",
|
|
349
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
350
|
+
"Year": "1995",
|
|
351
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
352
|
+
"n": "35"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"95%_CI": "17.8-37.4",
|
|
356
|
+
"Category": "Age Group",
|
|
357
|
+
"Category_Order": "3",
|
|
358
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
359
|
+
"DataSource": "BRFSS",
|
|
360
|
+
"Data_Type": "Crude Prevalence",
|
|
361
|
+
"Dataset": "Nationwide",
|
|
362
|
+
"Footnotes": "N/A",
|
|
363
|
+
"GeoLocation_Lat": "N/A",
|
|
364
|
+
"GeoLocation_Long": "N/A",
|
|
365
|
+
"High_CI": "37.4",
|
|
366
|
+
"LocationCategory": "States",
|
|
367
|
+
"Low_CI": "17.8",
|
|
368
|
+
"Percentage": 27.6,
|
|
369
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
370
|
+
"Response": "Overweight (BMI 25.0-29.9)",
|
|
371
|
+
"Response_Filter": "Overweight (BMI 25.0-29.9)",
|
|
372
|
+
"State": "Alaska",
|
|
373
|
+
"State_Abbr": "AK",
|
|
374
|
+
"Subcategory": "18-24",
|
|
375
|
+
"Subcategory_Filter": "18-24",
|
|
376
|
+
"Subcategory_Order": "4",
|
|
377
|
+
"Topic": "BMI Categories",
|
|
378
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
379
|
+
"Year": "1995",
|
|
380
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
381
|
+
"n": "39"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"95%_CI": "30.3-44.3",
|
|
385
|
+
"Category": "Age Group",
|
|
386
|
+
"Category_Order": "3",
|
|
387
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
388
|
+
"DataSource": "BRFSS",
|
|
389
|
+
"Data_Type": "Crude Prevalence",
|
|
390
|
+
"Dataset": "Nationwide",
|
|
391
|
+
"Footnotes": "N/A",
|
|
392
|
+
"GeoLocation_Lat": "N/A",
|
|
393
|
+
"GeoLocation_Long": "N/A",
|
|
394
|
+
"High_CI": "44.3",
|
|
395
|
+
"LocationCategory": "States",
|
|
396
|
+
"Low_CI": "30.3",
|
|
397
|
+
"Percentage": 37.3,
|
|
398
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
399
|
+
"Response": "Overweight (BMI 25.0-29.9)",
|
|
400
|
+
"Response_Filter": "Overweight (BMI 25.0-29.9)",
|
|
401
|
+
"State": "Alaska",
|
|
402
|
+
"State_Abbr": "AK",
|
|
403
|
+
"Subcategory": "25-34",
|
|
404
|
+
"Subcategory_Filter": "25-34",
|
|
405
|
+
"Subcategory_Order": "7",
|
|
406
|
+
"Topic": "BMI Categories",
|
|
407
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
408
|
+
"Year": "1995",
|
|
409
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
410
|
+
"n": "123"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"95%_CI": "26.5-39.9",
|
|
414
|
+
"Category": "Age Group",
|
|
415
|
+
"Category_Order": "3",
|
|
416
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
417
|
+
"DataSource": "BRFSS",
|
|
418
|
+
"Data_Type": "Crude Prevalence",
|
|
419
|
+
"Dataset": "Nationwide",
|
|
420
|
+
"Footnotes": "N/A",
|
|
421
|
+
"GeoLocation_Lat": "N/A",
|
|
422
|
+
"GeoLocation_Long": "N/A",
|
|
423
|
+
"High_CI": "39.9",
|
|
424
|
+
"LocationCategory": "States",
|
|
425
|
+
"Low_CI": "26.5",
|
|
426
|
+
"Percentage": 33.2,
|
|
427
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
428
|
+
"Response": "Overweight (BMI 25.0-29.9)",
|
|
429
|
+
"Response_Filter": "Overweight (BMI 25.0-29.9)",
|
|
430
|
+
"State": "Alaska",
|
|
431
|
+
"State_Abbr": "AK",
|
|
432
|
+
"Subcategory": "35-44",
|
|
433
|
+
"Subcategory_Filter": "35-44",
|
|
434
|
+
"Subcategory_Order": "10",
|
|
435
|
+
"Topic": "BMI Categories",
|
|
436
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
437
|
+
"Year": "1995",
|
|
438
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
439
|
+
"n": "148"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"95%_CI": "32.2-49.2",
|
|
443
|
+
"Category": "Age Group",
|
|
444
|
+
"Category_Order": "3",
|
|
445
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
446
|
+
"DataSource": "BRFSS",
|
|
447
|
+
"Data_Type": "Crude Prevalence",
|
|
448
|
+
"Dataset": "Nationwide",
|
|
449
|
+
"Footnotes": "N/A",
|
|
450
|
+
"GeoLocation_Lat": "N/A",
|
|
451
|
+
"GeoLocation_Long": "N/A",
|
|
452
|
+
"High_CI": "49.2",
|
|
453
|
+
"LocationCategory": "States",
|
|
454
|
+
"Low_CI": "32.2",
|
|
455
|
+
"Percentage": 40.7,
|
|
456
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
457
|
+
"Response": "Overweight (BMI 25.0-29.9)",
|
|
458
|
+
"Response_Filter": "Overweight (BMI 25.0-29.9)",
|
|
459
|
+
"State": "Alaska",
|
|
460
|
+
"State_Abbr": "AK",
|
|
461
|
+
"Subcategory": "45-54",
|
|
462
|
+
"Subcategory_Filter": "45-54",
|
|
463
|
+
"Subcategory_Order": "14",
|
|
464
|
+
"Topic": "BMI Categories",
|
|
465
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
466
|
+
"Year": "1995",
|
|
467
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
468
|
+
"n": "132"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"95%_CI": "N/A",
|
|
472
|
+
"Category": "Age Group",
|
|
473
|
+
"Category_Order": "3",
|
|
474
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
475
|
+
"DataSource": "BRFSS",
|
|
476
|
+
"Data_Type": "Crude Prevalence",
|
|
477
|
+
"Dataset": "Nationwide",
|
|
478
|
+
"Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
|
|
479
|
+
"GeoLocation_Lat": "N/A",
|
|
480
|
+
"GeoLocation_Long": "N/A",
|
|
481
|
+
"High_CI": "N/A",
|
|
482
|
+
"LocationCategory": "States",
|
|
483
|
+
"Low_CI": "N/A",
|
|
484
|
+
"Percentage": "N/A",
|
|
485
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
486
|
+
"Response": "Overweight (BMI 25.0-29.9)",
|
|
487
|
+
"Response_Filter": "Overweight (BMI 25.0-29.9)",
|
|
488
|
+
"State": "Alaska",
|
|
489
|
+
"State_Abbr": "AK",
|
|
490
|
+
"Subcategory": "55-64",
|
|
491
|
+
"Subcategory_Filter": "55-64",
|
|
492
|
+
"Subcategory_Order": "18",
|
|
493
|
+
"Topic": "BMI Categories",
|
|
494
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
495
|
+
"Year": "1995",
|
|
496
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
497
|
+
"n": "65"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"95%_CI": "N/A",
|
|
501
|
+
"Category": "Age Group",
|
|
502
|
+
"Category_Order": "3",
|
|
503
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
504
|
+
"DataSource": "BRFSS",
|
|
505
|
+
"Data_Type": "Crude Prevalence",
|
|
506
|
+
"Dataset": "Nationwide",
|
|
507
|
+
"Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
|
|
508
|
+
"GeoLocation_Lat": "N/A",
|
|
509
|
+
"GeoLocation_Long": "N/A",
|
|
510
|
+
"High_CI": "N/A",
|
|
511
|
+
"LocationCategory": "States",
|
|
512
|
+
"Low_CI": "N/A",
|
|
513
|
+
"Percentage": "N/A",
|
|
514
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
515
|
+
"Response": "Overweight (BMI 25.0-29.9)",
|
|
516
|
+
"Response_Filter": "Overweight (BMI 25.0-29.9)",
|
|
517
|
+
"State": "Alaska",
|
|
518
|
+
"State_Abbr": "AK",
|
|
519
|
+
"Subcategory": "65+",
|
|
520
|
+
"Subcategory_Filter": "65+",
|
|
521
|
+
"Subcategory_Order": "23",
|
|
522
|
+
"Topic": "BMI Categories",
|
|
523
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
524
|
+
"Year": "1995",
|
|
525
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
526
|
+
"n": "53"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"95%_CI": "8.0-24.0",
|
|
530
|
+
"Category": "Age Group",
|
|
531
|
+
"Category_Order": "3",
|
|
532
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
533
|
+
"DataSource": "BRFSS",
|
|
534
|
+
"Data_Type": "Crude Prevalence",
|
|
535
|
+
"Dataset": "Nationwide",
|
|
536
|
+
"Footnotes": "N/A",
|
|
537
|
+
"GeoLocation_Lat": "N/A",
|
|
538
|
+
"GeoLocation_Long": "N/A",
|
|
539
|
+
"High_CI": "24.0",
|
|
540
|
+
"LocationCategory": "States",
|
|
541
|
+
"Low_CI": "8.0",
|
|
542
|
+
"Percentage": 16,
|
|
543
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
544
|
+
"Response": "Obese (BMI 30.0 - 99.8)",
|
|
545
|
+
"Response_Filter": "Obese (BMI 30.0 - 99.8)",
|
|
546
|
+
"State": "Alaska",
|
|
547
|
+
"State_Abbr": "AK",
|
|
548
|
+
"Subcategory": "18-24",
|
|
549
|
+
"Subcategory_Filter": "18-24",
|
|
550
|
+
"Subcategory_Order": "4",
|
|
551
|
+
"Topic": "BMI Categories",
|
|
552
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
553
|
+
"Year": "1995",
|
|
554
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
555
|
+
"n": "20"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"95%_CI": "8.1-17.3",
|
|
559
|
+
"Category": "Age Group",
|
|
560
|
+
"Category_Order": "3",
|
|
561
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
562
|
+
"DataSource": "BRFSS",
|
|
563
|
+
"Data_Type": "Crude Prevalence",
|
|
564
|
+
"Dataset": "Nationwide",
|
|
565
|
+
"Footnotes": "N/A",
|
|
566
|
+
"GeoLocation_Lat": "N/A",
|
|
567
|
+
"GeoLocation_Long": "N/A",
|
|
568
|
+
"High_CI": "17.3",
|
|
569
|
+
"LocationCategory": "States",
|
|
570
|
+
"Low_CI": "8.1",
|
|
571
|
+
"Percentage": 12.7,
|
|
572
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
573
|
+
"Response": "Obese (BMI 30.0 - 99.8)",
|
|
574
|
+
"Response_Filter": "Obese (BMI 30.0 - 99.8)",
|
|
575
|
+
"State": "Alaska",
|
|
576
|
+
"State_Abbr": "AK",
|
|
577
|
+
"Subcategory": "25-34",
|
|
578
|
+
"Subcategory_Filter": "25-34",
|
|
579
|
+
"Subcategory_Order": "7",
|
|
580
|
+
"Topic": "BMI Categories",
|
|
581
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
582
|
+
"Year": "1995",
|
|
583
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
584
|
+
"n": "47"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"95%_CI": "14.7-26.5",
|
|
588
|
+
"Category": "Age Group",
|
|
589
|
+
"Category_Order": "3",
|
|
590
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
591
|
+
"DataSource": "BRFSS",
|
|
592
|
+
"Data_Type": "Crude Prevalence",
|
|
593
|
+
"Dataset": "Nationwide",
|
|
594
|
+
"Footnotes": "N/A",
|
|
595
|
+
"GeoLocation_Lat": "N/A",
|
|
596
|
+
"GeoLocation_Long": "N/A",
|
|
597
|
+
"High_CI": "26.5",
|
|
598
|
+
"LocationCategory": "States",
|
|
599
|
+
"Low_CI": "14.7",
|
|
600
|
+
"Percentage": 20.6,
|
|
601
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
602
|
+
"Response": "Obese (BMI 30.0 - 99.8)",
|
|
603
|
+
"Response_Filter": "Obese (BMI 30.0 - 99.8)",
|
|
604
|
+
"State": "Alaska",
|
|
605
|
+
"State_Abbr": "AK",
|
|
606
|
+
"Subcategory": "35-44",
|
|
607
|
+
"Subcategory_Filter": "35-44",
|
|
608
|
+
"Subcategory_Order": "10",
|
|
609
|
+
"Topic": "BMI Categories",
|
|
610
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
611
|
+
"Year": "1995",
|
|
612
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
613
|
+
"n": "91"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"95%_CI": "19.7-35.7",
|
|
617
|
+
"Category": "Age Group",
|
|
618
|
+
"Category_Order": "3",
|
|
619
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
620
|
+
"DataSource": "BRFSS",
|
|
621
|
+
"Data_Type": "Crude Prevalence",
|
|
622
|
+
"Dataset": "Nationwide",
|
|
623
|
+
"Footnotes": "N/A",
|
|
624
|
+
"GeoLocation_Lat": "N/A",
|
|
625
|
+
"GeoLocation_Long": "N/A",
|
|
626
|
+
"High_CI": "35.7",
|
|
627
|
+
"LocationCategory": "States",
|
|
628
|
+
"Low_CI": "19.7",
|
|
629
|
+
"Percentage": 27.7,
|
|
630
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
631
|
+
"Response": "Obese (BMI 30.0 - 99.8)",
|
|
632
|
+
"Response_Filter": "Obese (BMI 30.0 - 99.8)",
|
|
633
|
+
"State": "Alaska",
|
|
634
|
+
"State_Abbr": "AK",
|
|
635
|
+
"Subcategory": "45-54",
|
|
636
|
+
"Subcategory_Filter": "45-54",
|
|
637
|
+
"Subcategory_Order": "14",
|
|
638
|
+
"Topic": "BMI Categories",
|
|
639
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
640
|
+
"Year": "1995",
|
|
641
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
642
|
+
"n": "79"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"95%_CI": "14.3-33.7",
|
|
646
|
+
"Category": "Age Group",
|
|
647
|
+
"Category_Order": "3",
|
|
648
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
649
|
+
"DataSource": "BRFSS",
|
|
650
|
+
"Data_Type": "Crude Prevalence",
|
|
651
|
+
"Dataset": "Nationwide",
|
|
652
|
+
"Footnotes": "N/A",
|
|
653
|
+
"GeoLocation_Lat": "N/A",
|
|
654
|
+
"GeoLocation_Long": "N/A",
|
|
655
|
+
"High_CI": "33.7",
|
|
656
|
+
"LocationCategory": "States",
|
|
657
|
+
"Low_CI": "14.3",
|
|
658
|
+
"Percentage": 24,
|
|
659
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
660
|
+
"Response": "Obese (BMI 30.0 - 99.8)",
|
|
661
|
+
"Response_Filter": "Obese (BMI 30.0 - 99.8)",
|
|
662
|
+
"State": "Alaska",
|
|
663
|
+
"State_Abbr": "AK",
|
|
664
|
+
"Subcategory": "55-64",
|
|
665
|
+
"Subcategory_Filter": "55-64",
|
|
666
|
+
"Subcategory_Order": "18",
|
|
667
|
+
"Topic": "BMI Categories",
|
|
668
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
669
|
+
"Year": "1995",
|
|
670
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
671
|
+
"n": "44"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"95%_CI": "N/A",
|
|
675
|
+
"Category": "Age Group",
|
|
676
|
+
"Category_Order": "3",
|
|
677
|
+
"Class": "Overweight and Obesity (BMI)",
|
|
678
|
+
"DataSource": "BRFSS",
|
|
679
|
+
"Data_Type": "Crude Prevalence",
|
|
680
|
+
"Dataset": "Nationwide",
|
|
681
|
+
"Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
|
|
682
|
+
"GeoLocation_Lat": "N/A",
|
|
683
|
+
"GeoLocation_Long": "N/A",
|
|
684
|
+
"High_CI": "N/A",
|
|
685
|
+
"LocationCategory": "States",
|
|
686
|
+
"Low_CI": "N/A",
|
|
687
|
+
"Percentage": "N/A",
|
|
688
|
+
"Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
|
|
689
|
+
"Response": "Obese (BMI 30.0 - 99.8)",
|
|
690
|
+
"Response_Filter": "Obese (BMI 30.0 - 99.8)",
|
|
691
|
+
"State": "Alaska",
|
|
692
|
+
"State_Abbr": "AK",
|
|
693
|
+
"Subcategory": "65+",
|
|
694
|
+
"Subcategory_Filter": "65+",
|
|
695
|
+
"Subcategory_Order": "23",
|
|
696
|
+
"Topic": "BMI Categories",
|
|
697
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
698
|
+
"Year": "1995",
|
|
699
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
700
|
+
"n": "36"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"95%_CI": "N/A",
|
|
704
|
+
"Category": "Age Group",
|
|
705
|
+
"Category_Order": "3",
|
|
706
|
+
"Class": "Demographics",
|
|
707
|
+
"DataSource": "BRFSS",
|
|
708
|
+
"Data_Type": "Crude Prevalence",
|
|
709
|
+
"Dataset": "Nationwide",
|
|
710
|
+
"Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
|
|
711
|
+
"GeoLocation_Lat": "N/A",
|
|
712
|
+
"GeoLocation_Long": "N/A",
|
|
713
|
+
"High_CI": "N/A",
|
|
714
|
+
"LocationCategory": "States",
|
|
715
|
+
"Low_CI": "N/A",
|
|
716
|
+
"Percentage": "N/A",
|
|
717
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
718
|
+
"Response": "None",
|
|
719
|
+
"Response_Filter": "None",
|
|
720
|
+
"State": "Alaska",
|
|
721
|
+
"State_Abbr": "AK",
|
|
722
|
+
"Subcategory": "18-24",
|
|
723
|
+
"Subcategory_Filter": "18-24",
|
|
724
|
+
"Subcategory_Order": "4",
|
|
725
|
+
"Topic": "Number of Children",
|
|
726
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
727
|
+
"Year": "1995",
|
|
728
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
729
|
+
"n": "63"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"95%_CI": "35.0-49.2",
|
|
733
|
+
"Category": "Age Group",
|
|
734
|
+
"Category_Order": "3",
|
|
735
|
+
"Class": "Demographics",
|
|
736
|
+
"DataSource": "BRFSS",
|
|
737
|
+
"Data_Type": "Crude Prevalence",
|
|
738
|
+
"Dataset": "Nationwide",
|
|
739
|
+
"Footnotes": "N/A",
|
|
740
|
+
"GeoLocation_Lat": "N/A",
|
|
741
|
+
"GeoLocation_Long": "N/A",
|
|
742
|
+
"High_CI": "49.2",
|
|
743
|
+
"LocationCategory": "States",
|
|
744
|
+
"Low_CI": "35.0",
|
|
745
|
+
"Percentage": 42.1,
|
|
746
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
747
|
+
"Response": "None",
|
|
748
|
+
"Response_Filter": "None",
|
|
749
|
+
"State": "Alaska",
|
|
750
|
+
"State_Abbr": "AK",
|
|
751
|
+
"Subcategory": "25-34",
|
|
752
|
+
"Subcategory_Filter": "25-34",
|
|
753
|
+
"Subcategory_Order": "7",
|
|
754
|
+
"Topic": "Number of Children",
|
|
755
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
756
|
+
"Year": "1995",
|
|
757
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
758
|
+
"n": "138"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"95%_CI": "22.0-34.0",
|
|
762
|
+
"Category": "Age Group",
|
|
763
|
+
"Category_Order": "3",
|
|
764
|
+
"Class": "Demographics",
|
|
765
|
+
"DataSource": "BRFSS",
|
|
766
|
+
"Data_Type": "Crude Prevalence",
|
|
767
|
+
"Dataset": "Nationwide",
|
|
768
|
+
"Footnotes": "N/A",
|
|
769
|
+
"GeoLocation_Lat": "N/A",
|
|
770
|
+
"GeoLocation_Long": "N/A",
|
|
771
|
+
"High_CI": "34.0",
|
|
772
|
+
"LocationCategory": "States",
|
|
773
|
+
"Low_CI": "22.0",
|
|
774
|
+
"Percentage": 28,
|
|
775
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
776
|
+
"Response": "None",
|
|
777
|
+
"Response_Filter": "None",
|
|
778
|
+
"State": "Alaska",
|
|
779
|
+
"State_Abbr": "AK",
|
|
780
|
+
"Subcategory": "35-44",
|
|
781
|
+
"Subcategory_Filter": "35-44",
|
|
782
|
+
"Subcategory_Order": "10",
|
|
783
|
+
"Topic": "Number of Children",
|
|
784
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
785
|
+
"Year": "1995",
|
|
786
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
787
|
+
"n": "138"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"95%_CI": "48.8-66.0",
|
|
791
|
+
"Category": "Age Group",
|
|
792
|
+
"Category_Order": "3",
|
|
793
|
+
"Class": "Demographics",
|
|
794
|
+
"DataSource": "BRFSS",
|
|
795
|
+
"Data_Type": "Crude Prevalence",
|
|
796
|
+
"Dataset": "Nationwide",
|
|
797
|
+
"Footnotes": "N/A",
|
|
798
|
+
"GeoLocation_Lat": "N/A",
|
|
799
|
+
"GeoLocation_Long": "N/A",
|
|
800
|
+
"High_CI": "66.0",
|
|
801
|
+
"LocationCategory": "States",
|
|
802
|
+
"Low_CI": "48.8",
|
|
803
|
+
"Percentage": 57.4,
|
|
804
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
805
|
+
"Response": "None",
|
|
806
|
+
"Response_Filter": "None",
|
|
807
|
+
"State": "Alaska",
|
|
808
|
+
"State_Abbr": "AK",
|
|
809
|
+
"Subcategory": "45-54",
|
|
810
|
+
"Subcategory_Filter": "45-54",
|
|
811
|
+
"Subcategory_Order": "14",
|
|
812
|
+
"Topic": "Number of Children",
|
|
813
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
814
|
+
"Year": "1995",
|
|
815
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
816
|
+
"n": "194"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"95%_CI": "76.1-94.9",
|
|
820
|
+
"Category": "Age Group",
|
|
821
|
+
"Category_Order": "3",
|
|
822
|
+
"Class": "Demographics",
|
|
823
|
+
"DataSource": "BRFSS",
|
|
824
|
+
"Data_Type": "Crude Prevalence",
|
|
825
|
+
"Dataset": "Nationwide",
|
|
826
|
+
"Footnotes": "N/A",
|
|
827
|
+
"GeoLocation_Lat": "N/A",
|
|
828
|
+
"GeoLocation_Long": "N/A",
|
|
829
|
+
"High_CI": "94.9",
|
|
830
|
+
"LocationCategory": "States",
|
|
831
|
+
"Low_CI": "76.1",
|
|
832
|
+
"Percentage": 85.5,
|
|
833
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
834
|
+
"Response": "None",
|
|
835
|
+
"Response_Filter": "None",
|
|
836
|
+
"State": "Alaska",
|
|
837
|
+
"State_Abbr": "AK",
|
|
838
|
+
"Subcategory": "55-64",
|
|
839
|
+
"Subcategory_Filter": "55-64",
|
|
840
|
+
"Subcategory_Order": "18",
|
|
841
|
+
"Topic": "Number of Children",
|
|
842
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
843
|
+
"Year": "1995",
|
|
844
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
845
|
+
"n": "139"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"95%_CI": "N/A",
|
|
849
|
+
"Category": "Age Group",
|
|
850
|
+
"Category_Order": "3",
|
|
851
|
+
"Class": "Demographics",
|
|
852
|
+
"DataSource": "BRFSS",
|
|
853
|
+
"Data_Type": "Crude Prevalence",
|
|
854
|
+
"Dataset": "Nationwide",
|
|
855
|
+
"Footnotes": "N/A",
|
|
856
|
+
"GeoLocation_Lat": "N/A",
|
|
857
|
+
"GeoLocation_Long": "N/A",
|
|
858
|
+
"High_CI": "N/A",
|
|
859
|
+
"LocationCategory": "States",
|
|
860
|
+
"Low_CI": "83.8",
|
|
861
|
+
"Percentage": 93.4,
|
|
862
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
863
|
+
"Response": "None",
|
|
864
|
+
"Response_Filter": "None",
|
|
865
|
+
"State": "Alaska",
|
|
866
|
+
"State_Abbr": "AK",
|
|
867
|
+
"Subcategory": "65+",
|
|
868
|
+
"Subcategory_Filter": "65+",
|
|
869
|
+
"Subcategory_Order": "23",
|
|
870
|
+
"Topic": "Number of Children",
|
|
871
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
872
|
+
"Year": "1995",
|
|
873
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
874
|
+
"n": "126"
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"95%_CI": "11.3-30.1",
|
|
878
|
+
"Category": "Age Group",
|
|
879
|
+
"Category_Order": "3",
|
|
880
|
+
"Class": "Demographics",
|
|
881
|
+
"DataSource": "BRFSS",
|
|
882
|
+
"Data_Type": "Crude Prevalence",
|
|
883
|
+
"Dataset": "Nationwide",
|
|
884
|
+
"Footnotes": "N/A",
|
|
885
|
+
"GeoLocation_Lat": "N/A",
|
|
886
|
+
"GeoLocation_Long": "N/A",
|
|
887
|
+
"High_CI": "30.1",
|
|
888
|
+
"LocationCategory": "States",
|
|
889
|
+
"Low_CI": "11.3",
|
|
890
|
+
"Percentage": 20.7,
|
|
891
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
892
|
+
"Response": "One child",
|
|
893
|
+
"Response_Filter": "One child",
|
|
894
|
+
"State": "Alaska",
|
|
895
|
+
"State_Abbr": "AK",
|
|
896
|
+
"Subcategory": "18-24",
|
|
897
|
+
"Subcategory_Filter": "18-24",
|
|
898
|
+
"Subcategory_Order": "4",
|
|
899
|
+
"Topic": "Number of Children",
|
|
900
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
901
|
+
"Year": "1995",
|
|
902
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
903
|
+
"n": "25"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"95%_CI": "12.0-22.2",
|
|
907
|
+
"Category": "Age Group",
|
|
908
|
+
"Category_Order": "3",
|
|
909
|
+
"Class": "Demographics",
|
|
910
|
+
"DataSource": "BRFSS",
|
|
911
|
+
"Data_Type": "Crude Prevalence",
|
|
912
|
+
"Dataset": "Nationwide",
|
|
913
|
+
"Footnotes": "N/A",
|
|
914
|
+
"GeoLocation_Lat": "N/A",
|
|
915
|
+
"GeoLocation_Long": "N/A",
|
|
916
|
+
"High_CI": "22.2",
|
|
917
|
+
"LocationCategory": "States",
|
|
918
|
+
"Low_CI": "12.0",
|
|
919
|
+
"Percentage": 17.1,
|
|
920
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
921
|
+
"Response": "One child",
|
|
922
|
+
"Response_Filter": "One child",
|
|
923
|
+
"State": "Alaska",
|
|
924
|
+
"State_Abbr": "AK",
|
|
925
|
+
"Subcategory": "25-34",
|
|
926
|
+
"Subcategory_Filter": "25-34",
|
|
927
|
+
"Subcategory_Order": "7",
|
|
928
|
+
"Topic": "Number of Children",
|
|
929
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
930
|
+
"Year": "1995",
|
|
931
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
932
|
+
"n": "62"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"95%_CI": "15.7-26.9",
|
|
936
|
+
"Category": "Age Group",
|
|
937
|
+
"Category_Order": "3",
|
|
938
|
+
"Class": "Demographics",
|
|
939
|
+
"DataSource": "BRFSS",
|
|
940
|
+
"Data_Type": "Crude Prevalence",
|
|
941
|
+
"Dataset": "Nationwide",
|
|
942
|
+
"Footnotes": "N/A",
|
|
943
|
+
"GeoLocation_Lat": "N/A",
|
|
944
|
+
"GeoLocation_Long": "N/A",
|
|
945
|
+
"High_CI": "26.9",
|
|
946
|
+
"LocationCategory": "States",
|
|
947
|
+
"Low_CI": "15.7",
|
|
948
|
+
"Percentage": 21.3,
|
|
949
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
950
|
+
"Response": "One child",
|
|
951
|
+
"Response_Filter": "One child",
|
|
952
|
+
"State": "Alaska",
|
|
953
|
+
"State_Abbr": "AK",
|
|
954
|
+
"Subcategory": "35-44",
|
|
955
|
+
"Subcategory_Filter": "35-44",
|
|
956
|
+
"Subcategory_Order": "10",
|
|
957
|
+
"Topic": "Number of Children",
|
|
958
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
959
|
+
"Year": "1995",
|
|
960
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
961
|
+
"n": "97"
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"95%_CI": "16.0-31.6",
|
|
965
|
+
"Category": "Age Group",
|
|
966
|
+
"Category_Order": "3",
|
|
967
|
+
"Class": "Demographics",
|
|
968
|
+
"DataSource": "BRFSS",
|
|
969
|
+
"Data_Type": "Crude Prevalence",
|
|
970
|
+
"Dataset": "Nationwide",
|
|
971
|
+
"Footnotes": "N/A",
|
|
972
|
+
"GeoLocation_Lat": "N/A",
|
|
973
|
+
"GeoLocation_Long": "N/A",
|
|
974
|
+
"High_CI": "31.6",
|
|
975
|
+
"LocationCategory": "States",
|
|
976
|
+
"Low_CI": "16.0",
|
|
977
|
+
"Percentage": 23.8,
|
|
978
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
979
|
+
"Response": "One child",
|
|
980
|
+
"Response_Filter": "One child",
|
|
981
|
+
"State": "Alaska",
|
|
982
|
+
"State_Abbr": "AK",
|
|
983
|
+
"Subcategory": "45-54",
|
|
984
|
+
"Subcategory_Filter": "45-54",
|
|
985
|
+
"Subcategory_Order": "14",
|
|
986
|
+
"Topic": "Number of Children",
|
|
987
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
988
|
+
"Year": "1995",
|
|
989
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
990
|
+
"n": "68"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"95%_CI": "2.1-7.7",
|
|
994
|
+
"Category": "Age Group",
|
|
995
|
+
"Category_Order": "3",
|
|
996
|
+
"Class": "Demographics",
|
|
997
|
+
"DataSource": "BRFSS",
|
|
998
|
+
"Data_Type": "Crude Prevalence",
|
|
999
|
+
"Dataset": "Nationwide",
|
|
1000
|
+
"Footnotes": "N/A",
|
|
1001
|
+
"GeoLocation_Lat": "N/A",
|
|
1002
|
+
"GeoLocation_Long": "N/A",
|
|
1003
|
+
"High_CI": "7.7",
|
|
1004
|
+
"LocationCategory": "States",
|
|
1005
|
+
"Low_CI": "2.1",
|
|
1006
|
+
"Percentage": 4.9,
|
|
1007
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1008
|
+
"Response": "One child",
|
|
1009
|
+
"Response_Filter": "One child",
|
|
1010
|
+
"State": "Alaska",
|
|
1011
|
+
"State_Abbr": "AK",
|
|
1012
|
+
"Subcategory": "55-64",
|
|
1013
|
+
"Subcategory_Filter": "55-64",
|
|
1014
|
+
"Subcategory_Order": "18",
|
|
1015
|
+
"Topic": "Number of Children",
|
|
1016
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1017
|
+
"Year": "1995",
|
|
1018
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1019
|
+
"n": "15"
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"95%_CI": "0.0-2.2",
|
|
1023
|
+
"Category": "Age Group",
|
|
1024
|
+
"Category_Order": "3",
|
|
1025
|
+
"Class": "Demographics",
|
|
1026
|
+
"DataSource": "BRFSS",
|
|
1027
|
+
"Data_Type": "Crude Prevalence",
|
|
1028
|
+
"Dataset": "Nationwide",
|
|
1029
|
+
"Footnotes": "N/A",
|
|
1030
|
+
"GeoLocation_Lat": "N/A",
|
|
1031
|
+
"GeoLocation_Long": "N/A",
|
|
1032
|
+
"High_CI": "2.2",
|
|
1033
|
+
"LocationCategory": "States",
|
|
1034
|
+
"Low_CI": "0.0",
|
|
1035
|
+
"Percentage": 1,
|
|
1036
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1037
|
+
"Response": "One child",
|
|
1038
|
+
"Response_Filter": "One child",
|
|
1039
|
+
"State": "Alaska",
|
|
1040
|
+
"State_Abbr": "AK",
|
|
1041
|
+
"Subcategory": "65+",
|
|
1042
|
+
"Subcategory_Filter": "65+",
|
|
1043
|
+
"Subcategory_Order": "23",
|
|
1044
|
+
"Topic": "Number of Children",
|
|
1045
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1046
|
+
"Year": "1995",
|
|
1047
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1048
|
+
"n": "3"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"95%_CI": "6.6-21.4",
|
|
1052
|
+
"Category": "Age Group",
|
|
1053
|
+
"Category_Order": "3",
|
|
1054
|
+
"Class": "Demographics",
|
|
1055
|
+
"DataSource": "BRFSS",
|
|
1056
|
+
"Data_Type": "Crude Prevalence",
|
|
1057
|
+
"Dataset": "Nationwide",
|
|
1058
|
+
"Footnotes": "N/A",
|
|
1059
|
+
"GeoLocation_Lat": "N/A",
|
|
1060
|
+
"GeoLocation_Long": "N/A",
|
|
1061
|
+
"High_CI": "21.4",
|
|
1062
|
+
"LocationCategory": "States",
|
|
1063
|
+
"Low_CI": "6.6",
|
|
1064
|
+
"Percentage": 14,
|
|
1065
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1066
|
+
"Response": "Two children",
|
|
1067
|
+
"Response_Filter": "Two children",
|
|
1068
|
+
"State": "Alaska",
|
|
1069
|
+
"State_Abbr": "AK",
|
|
1070
|
+
"Subcategory": "18-24",
|
|
1071
|
+
"Subcategory_Filter": "18-24",
|
|
1072
|
+
"Subcategory_Order": "4",
|
|
1073
|
+
"Topic": "Number of Children",
|
|
1074
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1075
|
+
"Year": "1995",
|
|
1076
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1077
|
+
"n": "21"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"95%_CI": "18.6-30.8",
|
|
1081
|
+
"Category": "Age Group",
|
|
1082
|
+
"Category_Order": "3",
|
|
1083
|
+
"Class": "Demographics",
|
|
1084
|
+
"DataSource": "BRFSS",
|
|
1085
|
+
"Data_Type": "Crude Prevalence",
|
|
1086
|
+
"Dataset": "Nationwide",
|
|
1087
|
+
"Footnotes": "N/A",
|
|
1088
|
+
"GeoLocation_Lat": "N/A",
|
|
1089
|
+
"GeoLocation_Long": "N/A",
|
|
1090
|
+
"High_CI": "30.8",
|
|
1091
|
+
"LocationCategory": "States",
|
|
1092
|
+
"Low_CI": "18.6",
|
|
1093
|
+
"Percentage": 24.7,
|
|
1094
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1095
|
+
"Response": "Two children",
|
|
1096
|
+
"Response_Filter": "Two children",
|
|
1097
|
+
"State": "Alaska",
|
|
1098
|
+
"State_Abbr": "AK",
|
|
1099
|
+
"Subcategory": "25-34",
|
|
1100
|
+
"Subcategory_Filter": "25-34",
|
|
1101
|
+
"Subcategory_Order": "7",
|
|
1102
|
+
"Topic": "Number of Children",
|
|
1103
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1104
|
+
"Year": "1995",
|
|
1105
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1106
|
+
"n": "82"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"95%_CI": "24.1-38.1",
|
|
1110
|
+
"Category": "Age Group",
|
|
1111
|
+
"Category_Order": "3",
|
|
1112
|
+
"Class": "Demographics",
|
|
1113
|
+
"DataSource": "BRFSS",
|
|
1114
|
+
"Data_Type": "Crude Prevalence",
|
|
1115
|
+
"Dataset": "Nationwide",
|
|
1116
|
+
"Footnotes": "N/A",
|
|
1117
|
+
"GeoLocation_Lat": "N/A",
|
|
1118
|
+
"GeoLocation_Long": "N/A",
|
|
1119
|
+
"High_CI": "38.1",
|
|
1120
|
+
"LocationCategory": "States",
|
|
1121
|
+
"Low_CI": "24.1",
|
|
1122
|
+
"Percentage": 31.1,
|
|
1123
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1124
|
+
"Response": "Two children",
|
|
1125
|
+
"Response_Filter": "Two children",
|
|
1126
|
+
"State": "Alaska",
|
|
1127
|
+
"State_Abbr": "AK",
|
|
1128
|
+
"Subcategory": "35-44",
|
|
1129
|
+
"Subcategory_Filter": "35-44",
|
|
1130
|
+
"Subcategory_Order": "10",
|
|
1131
|
+
"Topic": "Number of Children",
|
|
1132
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1133
|
+
"Year": "1995",
|
|
1134
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1135
|
+
"n": "128"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"95%_CI": "7.4-19.2",
|
|
1139
|
+
"Category": "Age Group",
|
|
1140
|
+
"Category_Order": "3",
|
|
1141
|
+
"Class": "Demographics",
|
|
1142
|
+
"DataSource": "BRFSS",
|
|
1143
|
+
"Data_Type": "Crude Prevalence",
|
|
1144
|
+
"Dataset": "Nationwide",
|
|
1145
|
+
"Footnotes": "N/A",
|
|
1146
|
+
"GeoLocation_Lat": "N/A",
|
|
1147
|
+
"GeoLocation_Long": "N/A",
|
|
1148
|
+
"High_CI": "19.2",
|
|
1149
|
+
"LocationCategory": "States",
|
|
1150
|
+
"Low_CI": "7.4",
|
|
1151
|
+
"Percentage": 13.3,
|
|
1152
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1153
|
+
"Response": "Two children",
|
|
1154
|
+
"Response_Filter": "Two children",
|
|
1155
|
+
"State": "Alaska",
|
|
1156
|
+
"State_Abbr": "AK",
|
|
1157
|
+
"Subcategory": "45-54",
|
|
1158
|
+
"Subcategory_Filter": "45-54",
|
|
1159
|
+
"Subcategory_Order": "14",
|
|
1160
|
+
"Topic": "Number of Children",
|
|
1161
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1162
|
+
"Year": "1995",
|
|
1163
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1164
|
+
"n": "37"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
"95%_CI": "0.0-15.7",
|
|
1168
|
+
"Category": "Age Group",
|
|
1169
|
+
"Category_Order": "3",
|
|
1170
|
+
"Class": "Demographics",
|
|
1171
|
+
"DataSource": "BRFSS",
|
|
1172
|
+
"Data_Type": "Crude Prevalence",
|
|
1173
|
+
"Dataset": "Nationwide",
|
|
1174
|
+
"Footnotes": "N/A",
|
|
1175
|
+
"GeoLocation_Lat": "N/A",
|
|
1176
|
+
"GeoLocation_Long": "N/A",
|
|
1177
|
+
"High_CI": "15.7",
|
|
1178
|
+
"LocationCategory": "States",
|
|
1179
|
+
"Low_CI": "0.0",
|
|
1180
|
+
"Percentage": 6.6,
|
|
1181
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1182
|
+
"Response": "Two children",
|
|
1183
|
+
"Response_Filter": "Two children",
|
|
1184
|
+
"State": "Alaska",
|
|
1185
|
+
"State_Abbr": "AK",
|
|
1186
|
+
"Subcategory": "55-64",
|
|
1187
|
+
"Subcategory_Filter": "55-64",
|
|
1188
|
+
"Subcategory_Order": "18",
|
|
1189
|
+
"Topic": "Number of Children",
|
|
1190
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1191
|
+
"Year": "1995",
|
|
1192
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1193
|
+
"n": "4"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"95%_CI": "0.0-1.7",
|
|
1197
|
+
"Category": "Age Group",
|
|
1198
|
+
"Category_Order": "3",
|
|
1199
|
+
"Class": "Demographics",
|
|
1200
|
+
"DataSource": "BRFSS",
|
|
1201
|
+
"Data_Type": "Crude Prevalence",
|
|
1202
|
+
"Dataset": "Nationwide",
|
|
1203
|
+
"Footnotes": "N/A",
|
|
1204
|
+
"GeoLocation_Lat": "N/A",
|
|
1205
|
+
"GeoLocation_Long": "N/A",
|
|
1206
|
+
"High_CI": "1.7",
|
|
1207
|
+
"LocationCategory": "States",
|
|
1208
|
+
"Low_CI": "0.0",
|
|
1209
|
+
"Percentage": 0.6,
|
|
1210
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1211
|
+
"Response": "Two children",
|
|
1212
|
+
"Response_Filter": "Two children",
|
|
1213
|
+
"State": "Alaska",
|
|
1214
|
+
"State_Abbr": "AK",
|
|
1215
|
+
"Subcategory": "65+",
|
|
1216
|
+
"Subcategory_Filter": "65+",
|
|
1217
|
+
"Subcategory_Order": "23",
|
|
1218
|
+
"Topic": "Number of Children",
|
|
1219
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1220
|
+
"Year": "1995",
|
|
1221
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1222
|
+
"n": "1"
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"95%_CI": "0.1-9.0",
|
|
1226
|
+
"Category": "Age Group",
|
|
1227
|
+
"Category_Order": "3",
|
|
1228
|
+
"Class": "Demographics",
|
|
1229
|
+
"DataSource": "BRFSS",
|
|
1230
|
+
"Data_Type": "Crude Prevalence",
|
|
1231
|
+
"Dataset": "Nationwide",
|
|
1232
|
+
"Footnotes": "N/A",
|
|
1233
|
+
"GeoLocation_Lat": "N/A",
|
|
1234
|
+
"GeoLocation_Long": "N/A",
|
|
1235
|
+
"High_CI": "9.0",
|
|
1236
|
+
"LocationCategory": "States",
|
|
1237
|
+
"Low_CI": "0.1",
|
|
1238
|
+
"Percentage": 4.6,
|
|
1239
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1240
|
+
"Response": "Three children",
|
|
1241
|
+
"Response_Filter": "Three children",
|
|
1242
|
+
"State": "Alaska",
|
|
1243
|
+
"State_Abbr": "AK",
|
|
1244
|
+
"Subcategory": "18-24",
|
|
1245
|
+
"Subcategory_Filter": "18-24",
|
|
1246
|
+
"Subcategory_Order": "4",
|
|
1247
|
+
"Topic": "Number of Children",
|
|
1248
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1249
|
+
"Year": "1995",
|
|
1250
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1251
|
+
"n": "6"
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
"95%_CI": "7.3-16.7",
|
|
1255
|
+
"Category": "Age Group",
|
|
1256
|
+
"Category_Order": "3",
|
|
1257
|
+
"Class": "Demographics",
|
|
1258
|
+
"DataSource": "BRFSS",
|
|
1259
|
+
"Data_Type": "Crude Prevalence",
|
|
1260
|
+
"Dataset": "Nationwide",
|
|
1261
|
+
"Footnotes": "N/A",
|
|
1262
|
+
"GeoLocation_Lat": "N/A",
|
|
1263
|
+
"GeoLocation_Long": "N/A",
|
|
1264
|
+
"High_CI": "16.7",
|
|
1265
|
+
"LocationCategory": "States",
|
|
1266
|
+
"Low_CI": "7.3",
|
|
1267
|
+
"Percentage": 12,
|
|
1268
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1269
|
+
"Response": "Three children",
|
|
1270
|
+
"Response_Filter": "Three children",
|
|
1271
|
+
"State": "Alaska",
|
|
1272
|
+
"State_Abbr": "AK",
|
|
1273
|
+
"Subcategory": "25-34",
|
|
1274
|
+
"Subcategory_Filter": "25-34",
|
|
1275
|
+
"Subcategory_Order": "7",
|
|
1276
|
+
"Topic": "Number of Children",
|
|
1277
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1278
|
+
"Year": "1995",
|
|
1279
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1280
|
+
"n": "38"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"95%_CI": "9.1-18.5",
|
|
1284
|
+
"Category": "Age Group",
|
|
1285
|
+
"Category_Order": "3",
|
|
1286
|
+
"Class": "Demographics",
|
|
1287
|
+
"DataSource": "BRFSS",
|
|
1288
|
+
"Data_Type": "Crude Prevalence",
|
|
1289
|
+
"Dataset": "Nationwide",
|
|
1290
|
+
"Footnotes": "N/A",
|
|
1291
|
+
"GeoLocation_Lat": "N/A",
|
|
1292
|
+
"GeoLocation_Long": "N/A",
|
|
1293
|
+
"High_CI": "18.5",
|
|
1294
|
+
"LocationCategory": "States",
|
|
1295
|
+
"Low_CI": "9.1",
|
|
1296
|
+
"Percentage": 13.8,
|
|
1297
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1298
|
+
"Response": "Three children",
|
|
1299
|
+
"Response_Filter": "Three children",
|
|
1300
|
+
"State": "Alaska",
|
|
1301
|
+
"State_Abbr": "AK",
|
|
1302
|
+
"Subcategory": "35-44",
|
|
1303
|
+
"Subcategory_Filter": "35-44",
|
|
1304
|
+
"Subcategory_Order": "10",
|
|
1305
|
+
"Topic": "Number of Children",
|
|
1306
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1307
|
+
"Year": "1995",
|
|
1308
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1309
|
+
"n": "61"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"95%_CI": "0.7-5.9",
|
|
1313
|
+
"Category": "Age Group",
|
|
1314
|
+
"Category_Order": "3",
|
|
1315
|
+
"Class": "Demographics",
|
|
1316
|
+
"DataSource": "BRFSS",
|
|
1317
|
+
"Data_Type": "Crude Prevalence",
|
|
1318
|
+
"Dataset": "Nationwide",
|
|
1319
|
+
"Footnotes": "N/A",
|
|
1320
|
+
"GeoLocation_Lat": "N/A",
|
|
1321
|
+
"GeoLocation_Long": "N/A",
|
|
1322
|
+
"High_CI": "5.9",
|
|
1323
|
+
"LocationCategory": "States",
|
|
1324
|
+
"Low_CI": "0.7",
|
|
1325
|
+
"Percentage": 3.3,
|
|
1326
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1327
|
+
"Response": "Three children",
|
|
1328
|
+
"Response_Filter": "Three children",
|
|
1329
|
+
"State": "Alaska",
|
|
1330
|
+
"State_Abbr": "AK",
|
|
1331
|
+
"Subcategory": "45-54",
|
|
1332
|
+
"Subcategory_Filter": "45-54",
|
|
1333
|
+
"Subcategory_Order": "14",
|
|
1334
|
+
"Topic": "Number of Children",
|
|
1335
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1336
|
+
"Year": "1995",
|
|
1337
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1338
|
+
"n": "13"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"95%_CI": "0.0-2.6",
|
|
1342
|
+
"Category": "Age Group",
|
|
1343
|
+
"Category_Order": "3",
|
|
1344
|
+
"Class": "Demographics",
|
|
1345
|
+
"DataSource": "BRFSS",
|
|
1346
|
+
"Data_Type": "Crude Prevalence",
|
|
1347
|
+
"Dataset": "Nationwide",
|
|
1348
|
+
"Footnotes": "N/A",
|
|
1349
|
+
"GeoLocation_Lat": "N/A",
|
|
1350
|
+
"GeoLocation_Long": "N/A",
|
|
1351
|
+
"High_CI": "2.6",
|
|
1352
|
+
"LocationCategory": "States",
|
|
1353
|
+
"Low_CI": "0.0",
|
|
1354
|
+
"Percentage": 1.2,
|
|
1355
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1356
|
+
"Response": "Three children",
|
|
1357
|
+
"Response_Filter": "Three children",
|
|
1358
|
+
"State": "Alaska",
|
|
1359
|
+
"State_Abbr": "AK",
|
|
1360
|
+
"Subcategory": "55-64",
|
|
1361
|
+
"Subcategory_Filter": "55-64",
|
|
1362
|
+
"Subcategory_Order": "18",
|
|
1363
|
+
"Topic": "Number of Children",
|
|
1364
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1365
|
+
"Year": "1995",
|
|
1366
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1367
|
+
"n": "3"
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"95%_CI": "0.0-14.7",
|
|
1371
|
+
"Category": "Age Group",
|
|
1372
|
+
"Category_Order": "3",
|
|
1373
|
+
"Class": "Demographics",
|
|
1374
|
+
"DataSource": "BRFSS",
|
|
1375
|
+
"Data_Type": "Crude Prevalence",
|
|
1376
|
+
"Dataset": "Nationwide",
|
|
1377
|
+
"Footnotes": "N/A",
|
|
1378
|
+
"GeoLocation_Lat": "N/A",
|
|
1379
|
+
"GeoLocation_Long": "N/A",
|
|
1380
|
+
"High_CI": "14.7",
|
|
1381
|
+
"LocationCategory": "States",
|
|
1382
|
+
"Low_CI": "0.0",
|
|
1383
|
+
"Percentage": 5.1,
|
|
1384
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1385
|
+
"Response": "Three children",
|
|
1386
|
+
"Response_Filter": "Three children",
|
|
1387
|
+
"State": "Alaska",
|
|
1388
|
+
"State_Abbr": "AK",
|
|
1389
|
+
"Subcategory": "65+",
|
|
1390
|
+
"Subcategory_Filter": "65+",
|
|
1391
|
+
"Subcategory_Order": "23",
|
|
1392
|
+
"Topic": "Number of Children",
|
|
1393
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1394
|
+
"Year": "1995",
|
|
1395
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1396
|
+
"n": "1"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"95%_CI": "0.0-6.2",
|
|
1400
|
+
"Category": "Age Group",
|
|
1401
|
+
"Category_Order": "3",
|
|
1402
|
+
"Class": "Demographics",
|
|
1403
|
+
"DataSource": "BRFSS",
|
|
1404
|
+
"Data_Type": "Crude Prevalence",
|
|
1405
|
+
"Dataset": "Nationwide",
|
|
1406
|
+
"Footnotes": "N/A",
|
|
1407
|
+
"GeoLocation_Lat": "N/A",
|
|
1408
|
+
"GeoLocation_Long": "N/A",
|
|
1409
|
+
"High_CI": "6.2",
|
|
1410
|
+
"LocationCategory": "States",
|
|
1411
|
+
"Low_CI": "0.0",
|
|
1412
|
+
"Percentage": 3,
|
|
1413
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1414
|
+
"Response": "Four children",
|
|
1415
|
+
"Response_Filter": "Four children",
|
|
1416
|
+
"State": "Alaska",
|
|
1417
|
+
"State_Abbr": "AK",
|
|
1418
|
+
"Subcategory": "18-24",
|
|
1419
|
+
"Subcategory_Filter": "18-24",
|
|
1420
|
+
"Subcategory_Order": "4",
|
|
1421
|
+
"Topic": "Number of Children",
|
|
1422
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1423
|
+
"Year": "1995",
|
|
1424
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1425
|
+
"n": "5"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"95%_CI": "1.1-5.1",
|
|
1429
|
+
"Category": "Age Group",
|
|
1430
|
+
"Category_Order": "3",
|
|
1431
|
+
"Class": "Demographics",
|
|
1432
|
+
"DataSource": "BRFSS",
|
|
1433
|
+
"Data_Type": "Crude Prevalence",
|
|
1434
|
+
"Dataset": "Nationwide",
|
|
1435
|
+
"Footnotes": "N/A",
|
|
1436
|
+
"GeoLocation_Lat": "N/A",
|
|
1437
|
+
"GeoLocation_Long": "N/A",
|
|
1438
|
+
"High_CI": "5.1",
|
|
1439
|
+
"LocationCategory": "States",
|
|
1440
|
+
"Low_CI": "1.1",
|
|
1441
|
+
"Percentage": 3.1,
|
|
1442
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1443
|
+
"Response": "Four children",
|
|
1444
|
+
"Response_Filter": "Four children",
|
|
1445
|
+
"State": "Alaska",
|
|
1446
|
+
"State_Abbr": "AK",
|
|
1447
|
+
"Subcategory": "25-34",
|
|
1448
|
+
"Subcategory_Filter": "25-34",
|
|
1449
|
+
"Subcategory_Order": "7",
|
|
1450
|
+
"Topic": "Number of Children",
|
|
1451
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1452
|
+
"Year": "1995",
|
|
1453
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1454
|
+
"n": "16"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"95%_CI": "1.5-5.9",
|
|
1458
|
+
"Category": "Age Group",
|
|
1459
|
+
"Category_Order": "3",
|
|
1460
|
+
"Class": "Demographics",
|
|
1461
|
+
"DataSource": "BRFSS",
|
|
1462
|
+
"Data_Type": "Crude Prevalence",
|
|
1463
|
+
"Dataset": "Nationwide",
|
|
1464
|
+
"Footnotes": "N/A",
|
|
1465
|
+
"GeoLocation_Lat": "N/A",
|
|
1466
|
+
"GeoLocation_Long": "N/A",
|
|
1467
|
+
"High_CI": "5.9",
|
|
1468
|
+
"LocationCategory": "States",
|
|
1469
|
+
"Low_CI": "1.5",
|
|
1470
|
+
"Percentage": 3.7,
|
|
1471
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1472
|
+
"Response": "Four children",
|
|
1473
|
+
"Response_Filter": "Four children",
|
|
1474
|
+
"State": "Alaska",
|
|
1475
|
+
"State_Abbr": "AK",
|
|
1476
|
+
"Subcategory": "35-44",
|
|
1477
|
+
"Subcategory_Filter": "35-44",
|
|
1478
|
+
"Subcategory_Order": "10",
|
|
1479
|
+
"Topic": "Number of Children",
|
|
1480
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1481
|
+
"Year": "1995",
|
|
1482
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1483
|
+
"n": "23"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"95%_CI": "0.0-4.1",
|
|
1487
|
+
"Category": "Age Group",
|
|
1488
|
+
"Category_Order": "3",
|
|
1489
|
+
"Class": "Demographics",
|
|
1490
|
+
"DataSource": "BRFSS",
|
|
1491
|
+
"Data_Type": "Crude Prevalence",
|
|
1492
|
+
"Dataset": "Nationwide",
|
|
1493
|
+
"Footnotes": "N/A",
|
|
1494
|
+
"GeoLocation_Lat": "N/A",
|
|
1495
|
+
"GeoLocation_Long": "N/A",
|
|
1496
|
+
"High_CI": "4.1",
|
|
1497
|
+
"LocationCategory": "States",
|
|
1498
|
+
"Low_CI": "0.0",
|
|
1499
|
+
"Percentage": 1.7,
|
|
1500
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1501
|
+
"Response": "Four children",
|
|
1502
|
+
"Response_Filter": "Four children",
|
|
1503
|
+
"State": "Alaska",
|
|
1504
|
+
"State_Abbr": "AK",
|
|
1505
|
+
"Subcategory": "45-54",
|
|
1506
|
+
"Subcategory_Filter": "45-54",
|
|
1507
|
+
"Subcategory_Order": "14",
|
|
1508
|
+
"Topic": "Number of Children",
|
|
1509
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1510
|
+
"Year": "1995",
|
|
1511
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1512
|
+
"n": "5"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"95%_CI": "0.0-4.1",
|
|
1516
|
+
"Category": "Age Group",
|
|
1517
|
+
"Category_Order": "3",
|
|
1518
|
+
"Class": "Demographics",
|
|
1519
|
+
"DataSource": "BRFSS",
|
|
1520
|
+
"Data_Type": "Crude Prevalence",
|
|
1521
|
+
"Dataset": "Nationwide",
|
|
1522
|
+
"Footnotes": "N/A",
|
|
1523
|
+
"GeoLocation_Lat": "N/A",
|
|
1524
|
+
"GeoLocation_Long": "N/A",
|
|
1525
|
+
"High_CI": "4.1",
|
|
1526
|
+
"LocationCategory": "States",
|
|
1527
|
+
"Low_CI": "0.0",
|
|
1528
|
+
"Percentage": 1.9,
|
|
1529
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1530
|
+
"Response": "Four children",
|
|
1531
|
+
"Response_Filter": "Four children",
|
|
1532
|
+
"State": "Alaska",
|
|
1533
|
+
"State_Abbr": "AK",
|
|
1534
|
+
"Subcategory": "55-64",
|
|
1535
|
+
"Subcategory_Filter": "55-64",
|
|
1536
|
+
"Subcategory_Order": "18",
|
|
1537
|
+
"Topic": "Number of Children",
|
|
1538
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1539
|
+
"Year": "1995",
|
|
1540
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1541
|
+
"n": "3"
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
"95%_CI": "0.0-1.1",
|
|
1545
|
+
"Category": "Age Group",
|
|
1546
|
+
"Category_Order": "3",
|
|
1547
|
+
"Class": "Demographics",
|
|
1548
|
+
"DataSource": "BRFSS",
|
|
1549
|
+
"Data_Type": "Crude Prevalence",
|
|
1550
|
+
"Dataset": "Nationwide",
|
|
1551
|
+
"Footnotes": "N/A",
|
|
1552
|
+
"GeoLocation_Lat": "N/A",
|
|
1553
|
+
"GeoLocation_Long": "N/A",
|
|
1554
|
+
"High_CI": "1.1",
|
|
1555
|
+
"LocationCategory": "States",
|
|
1556
|
+
"Low_CI": "0.0",
|
|
1557
|
+
"Percentage": 0.4,
|
|
1558
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1559
|
+
"Response": "Five or more children",
|
|
1560
|
+
"Response_Filter": "Five or more children",
|
|
1561
|
+
"State": "Alaska",
|
|
1562
|
+
"State_Abbr": "AK",
|
|
1563
|
+
"Subcategory": "18-24",
|
|
1564
|
+
"Subcategory_Filter": "18-24",
|
|
1565
|
+
"Subcategory_Order": "4",
|
|
1566
|
+
"Topic": "Number of Children",
|
|
1567
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1568
|
+
"Year": "1995",
|
|
1569
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1570
|
+
"n": "1"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"95%_CI": "0.2-1.6",
|
|
1574
|
+
"Category": "Age Group",
|
|
1575
|
+
"Category_Order": "3",
|
|
1576
|
+
"Class": "Demographics",
|
|
1577
|
+
"DataSource": "BRFSS",
|
|
1578
|
+
"Data_Type": "Crude Prevalence",
|
|
1579
|
+
"Dataset": "Nationwide",
|
|
1580
|
+
"Footnotes": "N/A",
|
|
1581
|
+
"GeoLocation_Lat": "N/A",
|
|
1582
|
+
"GeoLocation_Long": "N/A",
|
|
1583
|
+
"High_CI": "1.6",
|
|
1584
|
+
"LocationCategory": "States",
|
|
1585
|
+
"Low_CI": "0.2",
|
|
1586
|
+
"Percentage": 0.9,
|
|
1587
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1588
|
+
"Response": "Five or more children",
|
|
1589
|
+
"Response_Filter": "Five or more children",
|
|
1590
|
+
"State": "Alaska",
|
|
1591
|
+
"State_Abbr": "AK",
|
|
1592
|
+
"Subcategory": "25-34",
|
|
1593
|
+
"Subcategory_Filter": "25-34",
|
|
1594
|
+
"Subcategory_Order": "7",
|
|
1595
|
+
"Topic": "Number of Children",
|
|
1596
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1597
|
+
"Year": "1995",
|
|
1598
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1599
|
+
"n": "6"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"95%_CI": "0.3-3.9",
|
|
1603
|
+
"Category": "Age Group",
|
|
1604
|
+
"Category_Order": "3",
|
|
1605
|
+
"Class": "Demographics",
|
|
1606
|
+
"DataSource": "BRFSS",
|
|
1607
|
+
"Data_Type": "Crude Prevalence",
|
|
1608
|
+
"Dataset": "Nationwide",
|
|
1609
|
+
"Footnotes": "N/A",
|
|
1610
|
+
"GeoLocation_Lat": "N/A",
|
|
1611
|
+
"GeoLocation_Long": "N/A",
|
|
1612
|
+
"High_CI": "3.9",
|
|
1613
|
+
"LocationCategory": "States",
|
|
1614
|
+
"Low_CI": "0.3",
|
|
1615
|
+
"Percentage": 2.1,
|
|
1616
|
+
"Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
|
|
1617
|
+
"Response": "Five or more children",
|
|
1618
|
+
"Response_Filter": "Five or more children",
|
|
1619
|
+
"State": "Alaska",
|
|
1620
|
+
"State_Abbr": "AK",
|
|
1621
|
+
"Subcategory": "35-44",
|
|
1622
|
+
"Subcategory_Filter": "35-44",
|
|
1623
|
+
"Subcategory_Order": "10",
|
|
1624
|
+
"Topic": "Number of Children",
|
|
1625
|
+
"Visual_Type_Filter": "Chart_Table_Map",
|
|
1626
|
+
"Year": "1995",
|
|
1627
|
+
"createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
|
|
1628
|
+
"n": "10"
|
|
1629
|
+
}
|
|
1630
|
+
],
|
|
1631
|
+
"version": "4.25.1"
|
|
1632
|
+
}
|