@cdc/chart 4.24.1 → 4.24.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/cdcchart.js +30014 -29757
- package/examples/feature/line/line-chart-preliminary.json +84 -37
- package/examples/feature/regions/index.json +9 -5
- package/index.html +4 -2
- package/package.json +2 -2
- package/src/CdcChart.tsx +41 -24
- package/src/_stories/ChartEditor.stories.tsx +1 -1
- package/src/_stories/_mock/pie_config.json +4 -3
- package/src/components/AreaChart/components/AreaChart.jsx +1 -25
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +7 -5
- package/src/components/BarChart/components/BarChart.Vertical.tsx +12 -13
- package/src/components/BoxPlot/BoxPlot.jsx +9 -8
- package/src/components/EditorPanel/EditorPanel.tsx +1563 -1959
- package/src/components/EditorPanel/EditorPanelContext.ts +40 -0
- package/src/components/EditorPanel/components/Panels/Panel.BoxPlot.tsx +148 -0
- package/src/components/EditorPanel/components/{Panel.ForestPlotSettings.tsx → Panels/Panel.ForestPlotSettings.tsx} +16 -7
- package/src/components/EditorPanel/components/Panels/Panel.General.tsx +160 -0
- package/src/components/EditorPanel/components/{Panel.Regions.tsx → Panels/Panel.Regions.tsx} +5 -5
- package/src/components/EditorPanel/components/{Panel.Series.tsx → Panels/Panel.Series.tsx} +4 -4
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +297 -0
- package/src/components/EditorPanel/components/Panels/index.tsx +17 -0
- package/src/components/EditorPanel/editor-panel.scss +1 -13
- package/src/components/EditorPanel/useEditorPermissions.js +5 -0
- package/src/components/Legend/Legend.Component.tsx +199 -0
- package/src/components/Legend/Legend.tsx +5 -324
- package/src/components/Legend/helpers/createFormatLabels.tsx +140 -0
- package/src/components/LineChart/LineChartProps.ts +1 -1
- package/src/components/LineChart/components/LineChart.Circle.tsx +85 -52
- package/src/components/LineChart/helpers.ts +2 -2
- package/src/components/LineChart/index.tsx +97 -21
- package/src/components/LinearChart.jsx +3 -3
- package/src/components/PairedBarChart.jsx +4 -2
- package/src/components/PieChart/PieChart.tsx +78 -25
- package/src/components/Regions/components/Regions.tsx +14 -5
- package/src/data/initial-state.js +5 -2
- package/src/helpers/computeMarginBottom.ts +2 -2
- package/src/hooks/useHighlightedBars.js +1 -1
- package/src/hooks/useMinMax.ts +3 -3
- package/src/hooks/useScales.ts +18 -5
- package/src/hooks/useTooltip.tsx +11 -7
- package/src/scss/main.scss +0 -67
- package/src/types/ChartConfig.ts +17 -8
- package/src/types/ChartContext.ts +10 -4
- package/src/types/Label.ts +7 -0
- package/examples/private/chart-t.json +0 -3740
- package/examples/private/combo.json +0 -369
- package/examples/private/epi-data.csv +0 -13
- package/examples/private/epi-data.json +0 -62
- package/examples/private/epi.json +0 -403
- package/examples/private/occupancy.json +0 -109283
- package/examples/private/prod-line-config.json +0 -401
- package/examples/private/region-data.json +0 -822
- package/examples/private/region-testing.json +0 -312
- package/examples/private/scaling.json +0 -45325
- package/examples/private/testing-data.json +0 -1739
- package/examples/private/testing.json +0 -816
- package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +0 -109
- package/src/components/EditorPanel/components/Panels.tsx +0 -13
|
@@ -1,369 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "chart",
|
|
3
|
-
"debugSvg": false,
|
|
4
|
-
"chartMessage": {
|
|
5
|
-
"noData": "No Data Available"
|
|
6
|
-
},
|
|
7
|
-
"title": "<em>Combo</em> Chart",
|
|
8
|
-
"showTitle": true,
|
|
9
|
-
"showDownloadMediaButton": false,
|
|
10
|
-
"theme": "theme-blue",
|
|
11
|
-
"animate": false,
|
|
12
|
-
"fontSize": "medium",
|
|
13
|
-
"lineDatapointStyle": "hover",
|
|
14
|
-
"lineDatapointColor": "Lighter than Line",
|
|
15
|
-
"barHasBorder": "true",
|
|
16
|
-
"isLollipopChart": false,
|
|
17
|
-
"lollipopShape": "circle",
|
|
18
|
-
"lollipopColorStyle": "two-tone",
|
|
19
|
-
"visualizationSubType": "regular",
|
|
20
|
-
"barStyle": "",
|
|
21
|
-
"roundingStyle": "standard",
|
|
22
|
-
"tipRounding": "top",
|
|
23
|
-
"isResponsiveTicks": false,
|
|
24
|
-
"general": {
|
|
25
|
-
"showDownloadButton": false
|
|
26
|
-
},
|
|
27
|
-
"padding": {
|
|
28
|
-
"left": 5,
|
|
29
|
-
"right": 5
|
|
30
|
-
},
|
|
31
|
-
"suppressedData": [],
|
|
32
|
-
"preliminaryData": [],
|
|
33
|
-
"yAxis": {
|
|
34
|
-
"hideAxis": false,
|
|
35
|
-
"displayNumbersOnBar": false,
|
|
36
|
-
"hideLabel": false,
|
|
37
|
-
"hideTicks": false,
|
|
38
|
-
"size": "75",
|
|
39
|
-
"gridLines": false,
|
|
40
|
-
"enablePadding": true,
|
|
41
|
-
"min": "",
|
|
42
|
-
"max": "",
|
|
43
|
-
"labelColor": "#333",
|
|
44
|
-
"tickLabelColor": "#333",
|
|
45
|
-
"tickColor": "#333",
|
|
46
|
-
"rightHideAxis": true,
|
|
47
|
-
"rightAxisSize": "75",
|
|
48
|
-
"rightLabel": "New Participants",
|
|
49
|
-
"rightLabelOffsetSize": "50",
|
|
50
|
-
"rightAxisLabelColor": "#333",
|
|
51
|
-
"rightAxisTickLabelColor": "#333",
|
|
52
|
-
"rightAxisTickColor": "#333",
|
|
53
|
-
"numTicks": "",
|
|
54
|
-
"axisPadding": 0,
|
|
55
|
-
"tickRotation": 0,
|
|
56
|
-
"anchors": [],
|
|
57
|
-
"label": "Outreach Costs"
|
|
58
|
-
},
|
|
59
|
-
"boxplot": {
|
|
60
|
-
"plots": [],
|
|
61
|
-
"borders": "true",
|
|
62
|
-
"firstQuartilePercentage": 25,
|
|
63
|
-
"thirdQuartilePercentage": 75,
|
|
64
|
-
"boxWidthPercentage": 40,
|
|
65
|
-
"plotOutlierValues": false,
|
|
66
|
-
"plotNonOutlierValues": true,
|
|
67
|
-
"legend": {
|
|
68
|
-
"showHowToReadText": false,
|
|
69
|
-
"howToReadText": ""
|
|
70
|
-
},
|
|
71
|
-
"labels": {
|
|
72
|
-
"q1": "Lower Quartile",
|
|
73
|
-
"q2": "q2",
|
|
74
|
-
"q3": "Upper Quartile",
|
|
75
|
-
"q4": "q4",
|
|
76
|
-
"minimum": "Minimum",
|
|
77
|
-
"maximum": "Maximum",
|
|
78
|
-
"mean": "Mean",
|
|
79
|
-
"median": "Median",
|
|
80
|
-
"sd": "Standard Deviation",
|
|
81
|
-
"iqr": "Interquartile Range",
|
|
82
|
-
"total": "Total",
|
|
83
|
-
"outliers": "Outliers",
|
|
84
|
-
"values": "Values",
|
|
85
|
-
"lowerBounds": "Lower Bounds",
|
|
86
|
-
"upperBounds": "Upper Bounds"
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"topAxis": {
|
|
90
|
-
"hasLine": false
|
|
91
|
-
},
|
|
92
|
-
"isLegendValue": false,
|
|
93
|
-
"barThickness": 0.35,
|
|
94
|
-
"barHeight": 25,
|
|
95
|
-
"barSpace": 15,
|
|
96
|
-
"heights": {
|
|
97
|
-
"vertical": 300,
|
|
98
|
-
"horizontal": 750
|
|
99
|
-
},
|
|
100
|
-
"xAxis": {
|
|
101
|
-
"sortDates": false,
|
|
102
|
-
"anchors": [],
|
|
103
|
-
"type": "date",
|
|
104
|
-
"showTargetLabel": true,
|
|
105
|
-
"targetLabel": "Target",
|
|
106
|
-
"hideAxis": false,
|
|
107
|
-
"hideLabel": false,
|
|
108
|
-
"hideTicks": false,
|
|
109
|
-
"size": 75,
|
|
110
|
-
"tickRotation": 0,
|
|
111
|
-
"min": "",
|
|
112
|
-
"max": "",
|
|
113
|
-
"labelColor": "#333",
|
|
114
|
-
"tickLabelColor": "#333",
|
|
115
|
-
"tickColor": "#333",
|
|
116
|
-
"numTicks": "",
|
|
117
|
-
"labelOffset": 65,
|
|
118
|
-
"axisPadding": 0,
|
|
119
|
-
"target": 0,
|
|
120
|
-
"maxTickRotation": 0,
|
|
121
|
-
"dataKey": "Date",
|
|
122
|
-
"label": "Date",
|
|
123
|
-
"dateParseFormat": "%m/%d/%Y",
|
|
124
|
-
"dateDisplayFormat": "%m/%Y",
|
|
125
|
-
"tickWidthMax": 66
|
|
126
|
-
},
|
|
127
|
-
"table": {
|
|
128
|
-
"label": "Data Table",
|
|
129
|
-
"expanded": false,
|
|
130
|
-
"limitHeight": false,
|
|
131
|
-
"height": "",
|
|
132
|
-
"caption": "",
|
|
133
|
-
"showDownloadUrl": false,
|
|
134
|
-
"showDataTableLink": true,
|
|
135
|
-
"indexLabel": "Date",
|
|
136
|
-
"download": false,
|
|
137
|
-
"showVertical": true,
|
|
138
|
-
"show": true
|
|
139
|
-
},
|
|
140
|
-
"orientation": "vertical",
|
|
141
|
-
"color": "pinkpurple",
|
|
142
|
-
"columns": {},
|
|
143
|
-
"legend": {
|
|
144
|
-
"hide": false,
|
|
145
|
-
"behavior": "isolate",
|
|
146
|
-
"singleRow": false,
|
|
147
|
-
"colorCode": "",
|
|
148
|
-
"reverseLabelOrder": false,
|
|
149
|
-
"description": "Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
150
|
-
"dynamicLegend": false,
|
|
151
|
-
"dynamicLegendDefaultText": "Show All",
|
|
152
|
-
"dynamicLegendItemLimit": 5,
|
|
153
|
-
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
154
|
-
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
155
|
-
"lineMode": false,
|
|
156
|
-
"verticalSorted": false,
|
|
157
|
-
"highlightOnHover": false,
|
|
158
|
-
"label": "Lorem <em>ipsum dolor</em> sit amet"
|
|
159
|
-
},
|
|
160
|
-
"brush": {
|
|
161
|
-
"height": 25,
|
|
162
|
-
"data": [
|
|
163
|
-
{
|
|
164
|
-
"Date": "5/15/2022",
|
|
165
|
-
"New Participants": "70",
|
|
166
|
-
"Outreach Costs": "160000"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"Date": "8/15/2022",
|
|
170
|
-
"New Participants": "75",
|
|
171
|
-
"Outreach Costs": "170000"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"Date": "3/15/2022",
|
|
175
|
-
"New Participants": "80",
|
|
176
|
-
"Outreach Costs": "238000"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"Date": "1/15/2022",
|
|
180
|
-
"New Participants": "90",
|
|
181
|
-
"Outreach Costs": "252000"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"Date": "6/15/2022",
|
|
185
|
-
"New Participants": "100",
|
|
186
|
-
"Outreach Costs": "280000"
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
"Date": "9/15/2022",
|
|
190
|
-
"New Participants": "120",
|
|
191
|
-
"Outreach Costs": "368000"
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"Date": "7/15/2022",
|
|
195
|
-
"New Participants": "132",
|
|
196
|
-
"Outreach Costs": "380000"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"Date": "4/15/2022",
|
|
200
|
-
"New Participants": "146",
|
|
201
|
-
"Outreach Costs": "480000"
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
"Date": "2/15/2022",
|
|
205
|
-
"New Participants": "150",
|
|
206
|
-
"Outreach Costs": "410000"
|
|
207
|
-
}
|
|
208
|
-
],
|
|
209
|
-
"active": false
|
|
210
|
-
},
|
|
211
|
-
"exclusions": {
|
|
212
|
-
"active": false,
|
|
213
|
-
"keys": []
|
|
214
|
-
},
|
|
215
|
-
"palette": "qualitative3",
|
|
216
|
-
"isPaletteReversed": false,
|
|
217
|
-
"twoColor": {
|
|
218
|
-
"palette": "monochrome-1",
|
|
219
|
-
"isPaletteReversed": false
|
|
220
|
-
},
|
|
221
|
-
"labels": false,
|
|
222
|
-
"dataFormat": {
|
|
223
|
-
"commas": true,
|
|
224
|
-
"prefix": "",
|
|
225
|
-
"suffix": "",
|
|
226
|
-
"abbreviated": true,
|
|
227
|
-
"bottomSuffix": "",
|
|
228
|
-
"bottomPrefix": "",
|
|
229
|
-
"bottomAbbreviated": false
|
|
230
|
-
},
|
|
231
|
-
"confidenceKeys": {},
|
|
232
|
-
"visual": {
|
|
233
|
-
"border": true,
|
|
234
|
-
"accent": true,
|
|
235
|
-
"background": true,
|
|
236
|
-
"verticalHoverLine": false,
|
|
237
|
-
"horizontalHoverLine": false
|
|
238
|
-
},
|
|
239
|
-
"useLogScale": false,
|
|
240
|
-
"filterBehavior": "Filter Change",
|
|
241
|
-
"highlightedBarValues": [],
|
|
242
|
-
"series": [
|
|
243
|
-
{
|
|
244
|
-
"dataKey": "New Participants",
|
|
245
|
-
"type": "dashed-md",
|
|
246
|
-
"axis": "Right",
|
|
247
|
-
"tooltip": true
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
"dataKey": "Outreach Costs",
|
|
251
|
-
"type": "Bar",
|
|
252
|
-
"axis": "Left",
|
|
253
|
-
"tooltip": true
|
|
254
|
-
}
|
|
255
|
-
],
|
|
256
|
-
"tooltips": {
|
|
257
|
-
"opacity": 90,
|
|
258
|
-
"singleSeries": false
|
|
259
|
-
},
|
|
260
|
-
"forestPlot": {
|
|
261
|
-
"startAt": 0,
|
|
262
|
-
"colors": {
|
|
263
|
-
"line": "",
|
|
264
|
-
"shape": ""
|
|
265
|
-
},
|
|
266
|
-
"lineOfNoEffect": {
|
|
267
|
-
"show": true
|
|
268
|
-
},
|
|
269
|
-
"type": "",
|
|
270
|
-
"pooledResult": {
|
|
271
|
-
"diamondHeight": 5,
|
|
272
|
-
"column": ""
|
|
273
|
-
},
|
|
274
|
-
"estimateField": "",
|
|
275
|
-
"estimateRadius": "",
|
|
276
|
-
"shape": "circle",
|
|
277
|
-
"rowHeight": 20,
|
|
278
|
-
"description": {
|
|
279
|
-
"show": true,
|
|
280
|
-
"text": "description",
|
|
281
|
-
"location": 0
|
|
282
|
-
},
|
|
283
|
-
"result": {
|
|
284
|
-
"show": true,
|
|
285
|
-
"text": "result",
|
|
286
|
-
"location": 100
|
|
287
|
-
},
|
|
288
|
-
"radius": {
|
|
289
|
-
"min": 2,
|
|
290
|
-
"max": 10,
|
|
291
|
-
"scalingColumn": ""
|
|
292
|
-
},
|
|
293
|
-
"regression": {
|
|
294
|
-
"lower": 0,
|
|
295
|
-
"upper": 0,
|
|
296
|
-
"estimateField": 0
|
|
297
|
-
},
|
|
298
|
-
"leftWidthOffset": 0,
|
|
299
|
-
"rightWidthOffset": 0,
|
|
300
|
-
"showZeroLine": false,
|
|
301
|
-
"leftLabel": "",
|
|
302
|
-
"rightLabel": ""
|
|
303
|
-
},
|
|
304
|
-
"area": {
|
|
305
|
-
"isStacked": false
|
|
306
|
-
},
|
|
307
|
-
"datasets": {},
|
|
308
|
-
"visualizationType": "Combo",
|
|
309
|
-
"data": [
|
|
310
|
-
{
|
|
311
|
-
"Date": "5/15/2022",
|
|
312
|
-
"New Participants": "70",
|
|
313
|
-
"Outreach Costs": "160000"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"Date": "8/15/2022",
|
|
317
|
-
"New Participants": "75",
|
|
318
|
-
"Outreach Costs": "170000"
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"Date": "3/15/2022",
|
|
322
|
-
"New Participants": "80",
|
|
323
|
-
"Outreach Costs": "238000"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"Date": "1/15/2022",
|
|
327
|
-
"New Participants": "90",
|
|
328
|
-
"Outreach Costs": "252000"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"Date": "6/15/2022",
|
|
332
|
-
"New Participants": "100",
|
|
333
|
-
"Outreach Costs": "280000"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"Date": "9/15/2022",
|
|
337
|
-
"New Participants": "120",
|
|
338
|
-
"Outreach Costs": "368000"
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
"Date": "7/15/2022",
|
|
342
|
-
"New Participants": "132",
|
|
343
|
-
"Outreach Costs": "380000"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"Date": "4/15/2022",
|
|
347
|
-
"New Participants": "146",
|
|
348
|
-
"Outreach Costs": "480000"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"Date": "2/15/2022",
|
|
352
|
-
"New Participants": "150",
|
|
353
|
-
"Outreach Costs": "410000"
|
|
354
|
-
}
|
|
355
|
-
],
|
|
356
|
-
"dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/61-bar-line-combo-2-value-axes.csv",
|
|
357
|
-
"dataFileSourceType": "url",
|
|
358
|
-
"dataDescription": {
|
|
359
|
-
"horizontal": false,
|
|
360
|
-
"series": true,
|
|
361
|
-
"singleRow": true
|
|
362
|
-
},
|
|
363
|
-
"validated": 4.23,
|
|
364
|
-
"superTitle": "<sup>super</sup> title",
|
|
365
|
-
"introText": "Message: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
366
|
-
"description": "Sub: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
367
|
-
"footnotes": "Foot: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
368
|
-
"dynamicMarginTop": 0
|
|
369
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
Population,Subgroup,Estimate
|
|
2
|
-
Age group (years),18-44,"1,161,000"
|
|
3
|
-
Age group (years),45-64,"1,061,000"
|
|
4
|
-
Age group (years),>=65,"643,000"
|
|
5
|
-
Sex,Men,"1,214,000"
|
|
6
|
-
Sex,Women,"1,651,000"
|
|
7
|
-
Race/Ethnicity,Hispanic,"382,000"
|
|
8
|
-
Race/Ethnicity,Non-Hispanic White,"1,870,000"
|
|
9
|
-
Race/Ethnicity,Non-Hispanic Black,"473,000"
|
|
10
|
-
Race/Ethnicity,Non-Hispanic other,"140,000"
|
|
11
|
-
Educational level,<High School or GED*,"448,000"
|
|
12
|
-
Educational level,High School or GED*,"1,020,000"
|
|
13
|
-
Educational level,>= some college,"1,366,000"
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"Population": "Age group (years)",
|
|
4
|
-
"Subgroup": "18-44",
|
|
5
|
-
"Estimate": "1,161,000"
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"Population": "Age group (years)",
|
|
9
|
-
"Subgroup": "45-64",
|
|
10
|
-
"Estimate": "1,061,000"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"Population": "Age group (years)",
|
|
14
|
-
"Subgroup": ">=65",
|
|
15
|
-
"Estimate": "643,000"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"Population": "Sex",
|
|
19
|
-
"Subgroup": "Men",
|
|
20
|
-
"Estimate": "1,214,000"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"Population": "Sex",
|
|
24
|
-
"Subgroup": "Women",
|
|
25
|
-
"Estimate": "1,651,000"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"Population": "Race/Ethnicity",
|
|
29
|
-
"Subgroup": "Hispanic",
|
|
30
|
-
"Estimate": "382,000"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"Population": "Race/Ethnicity",
|
|
34
|
-
"Subgroup": "Non-Hispanic White",
|
|
35
|
-
"Estimate": "1,870,000"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"Population": "Race/Ethnicity",
|
|
39
|
-
"Subgroup": "Non-Hispanic Black",
|
|
40
|
-
"Estimate": "473,000"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"Population": "Race/Ethnicity",
|
|
44
|
-
"Subgroup": "Non-Hispanic other",
|
|
45
|
-
"Estimate": "140,000"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"Population": "Educational level",
|
|
49
|
-
"Subgroup": "<High School or GED*",
|
|
50
|
-
"Estimate": "448,000"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"Population": "Educational level",
|
|
54
|
-
"Subgroup": "High School or GED*",
|
|
55
|
-
"Estimate": "1,020,000"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"Population": "Educational level",
|
|
59
|
-
"Subgroup": ">= some college",
|
|
60
|
-
"Estimate": "1,366,000"
|
|
61
|
-
}
|
|
62
|
-
]
|