@cdc/chart 4.24.12-2 → 4.25.1

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.
Files changed (70) hide show
  1. package/dist/cdcchart.js +79411 -78816
  2. package/examples/feature/boxplot/boxplot.json +2 -157
  3. package/examples/feature/boxplot/testing.csv +23 -38
  4. package/examples/feature/tests-non-numerics/example-combo-bar-nonnumeric.json +394 -30
  5. package/examples/private/not-loading.json +360 -0
  6. package/index.html +7 -14
  7. package/package.json +2 -2
  8. package/src/CdcChart.tsx +92 -1512
  9. package/src/CdcChartComponent.tsx +1105 -0
  10. package/src/_stories/Chart.Anchors.stories.tsx +1 -1
  11. package/src/_stories/Chart.CustomColors.stories.tsx +1 -1
  12. package/src/_stories/Chart.DynamicSeries.stories.tsx +1 -1
  13. package/src/_stories/Chart.Legend.Gradient.stories.tsx +2 -2
  14. package/src/_stories/Chart.ScatterPlot.stories.tsx +19 -0
  15. package/src/_stories/Chart.tooltip.stories.tsx +1 -2
  16. package/src/_stories/ChartAnnotation.stories.tsx +1 -1
  17. package/src/_stories/ChartAxisLabels.stories.tsx +1 -1
  18. package/src/_stories/ChartAxisTitles.stories.tsx +1 -1
  19. package/src/_stories/ChartEditor.stories.tsx +1 -1
  20. package/src/_stories/ChartLine.Suppression.stories.tsx +1 -1
  21. package/src/_stories/ChartLine.Symbols.stories.tsx +18 -0
  22. package/src/_stories/ChartPrefixSuffix.stories.tsx +1 -1
  23. package/src/_stories/_mock/line_chart_symbols.json +437 -0
  24. package/src/_stories/_mock/scatterplot-image-download.json +1244 -0
  25. package/src/components/Annotations/components/AnnotationDraggable.tsx +3 -11
  26. package/src/components/Annotations/components/AnnotationDropdown.tsx +3 -3
  27. package/src/components/Axis/Categorical.Axis.tsx +3 -4
  28. package/src/components/BarChart/components/BarChart.Horizontal.tsx +14 -5
  29. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +10 -4
  30. package/src/components/BoxPlot/BoxPlot.tsx +34 -32
  31. package/src/components/BoxPlot/helpers/index.ts +108 -18
  32. package/src/components/DeviationBar.jsx +2 -6
  33. package/src/components/EditorPanel/EditorPanel.tsx +62 -6
  34. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +4 -0
  35. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +44 -7
  36. package/src/components/ForestPlot/ForestPlot.tsx +176 -26
  37. package/src/components/Legend/Legend.Component.tsx +29 -38
  38. package/src/components/Legend/Legend.Suppression.tsx +3 -5
  39. package/src/components/Legend/Legend.tsx +2 -2
  40. package/src/components/Legend/LegendLine.Shape.tsx +51 -0
  41. package/src/components/Legend/helpers/createFormatLabels.tsx +29 -26
  42. package/src/components/Legend/helpers/getLegendClasses.ts +20 -38
  43. package/src/components/Legend/helpers/index.ts +14 -7
  44. package/src/components/Legend/tests/getLegendClasses.test.ts +3 -20
  45. package/src/components/LineChart/components/LineChart.Circle.tsx +90 -88
  46. package/src/components/LineChart/index.tsx +4 -0
  47. package/src/components/LinearChart.tsx +54 -29
  48. package/src/components/PairedBarChart.jsx +2 -9
  49. package/src/components/ZoomBrush.tsx +5 -7
  50. package/src/data/initial-state.js +6 -3
  51. package/src/helpers/getBoxPlotConfig.ts +68 -0
  52. package/src/helpers/getColorScale.ts +28 -0
  53. package/src/helpers/getComboChartConfig.ts +42 -0
  54. package/src/helpers/getExcludedData.ts +37 -0
  55. package/src/helpers/getTopAxis.ts +7 -0
  56. package/src/hooks/useBarChart.ts +28 -9
  57. package/src/hooks/{useHighlightedBars.js → useHighlightedBars.ts} +2 -1
  58. package/src/hooks/useIntersectionObserver.ts +37 -0
  59. package/src/hooks/useMinMax.ts +4 -0
  60. package/src/hooks/useReduceData.ts +1 -1
  61. package/src/hooks/useTooltip.tsx +9 -1
  62. package/src/index.jsx +1 -0
  63. package/src/scss/DataTable.scss +0 -5
  64. package/src/scss/main.scss +30 -115
  65. package/src/types/ChartConfig.ts +6 -3
  66. package/src/types/ChartContext.ts +1 -3
  67. package/src/helpers/getQuartiles.ts +0 -27
  68. package/src/hooks/useColorScale.ts +0 -50
  69. package/src/hooks/useIntersectionObserver.jsx +0 -29
  70. package/src/hooks/useTopAxis.js +0 -6
@@ -0,0 +1,1244 @@
1
+ {
2
+ "annotations": [],
3
+ "type": "chart",
4
+ "debugSvg": false,
5
+ "chartMessage": {
6
+ "noData": "No Data Available"
7
+ },
8
+ "title": "",
9
+ "showTitle": true,
10
+ "showDownloadMediaButton": false,
11
+ "theme": "theme-blue",
12
+ "animate": false,
13
+ "fontSize": "medium",
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
16
+ "barHasBorder": "false",
17
+ "isLollipopChart": false,
18
+ "lollipopShape": "circle",
19
+ "lollipopColorStyle": "two-tone",
20
+ "visualizationSubType": "regular",
21
+ "barStyle": "",
22
+ "roundingStyle": "standard",
23
+ "tipRounding": "top",
24
+ "isResponsiveTicks": true,
25
+ "general": {
26
+ "annotationDropdownText": "Annotations",
27
+ "showDownloadButton": false,
28
+ "showMissingDataLabel": true,
29
+ "showSuppressedSymbol": true,
30
+ "hideNullValue": true,
31
+ "showZeroValueDataLabel": true
32
+ },
33
+ "padding": {
34
+ "left": 5,
35
+ "right": 5
36
+ },
37
+ "preliminaryData": [],
38
+ "yAxis": {
39
+ "hideAxis": false,
40
+ "displayNumbersOnBar": false,
41
+ "hideLabel": false,
42
+ "hideTicks": false,
43
+ "size": 50,
44
+ "gridLines": false,
45
+ "enablePadding": false,
46
+ "min": "",
47
+ "max": "",
48
+ "labelColor": "#333",
49
+ "tickLabelColor": "#333",
50
+ "tickColor": "#333",
51
+ "rightHideAxis": true,
52
+ "rightAxisSize": 0,
53
+ "rightLabel": "",
54
+ "rightLabelOffsetSize": 0,
55
+ "rightAxisLabelColor": "#333",
56
+ "rightAxisTickLabelColor": "#333",
57
+ "rightAxisTickColor": "#333",
58
+ "numTicks": "",
59
+ "axisPadding": 0,
60
+ "scalePadding": 10,
61
+ "tickRotation": 0,
62
+ "anchors": [],
63
+ "shoMissingDataLabel": true,
64
+ "showMissingDataLine": true,
65
+ "categories": [],
66
+ "maxValue": 10,
67
+ "label": "Score"
68
+ },
69
+ "boxplot": {
70
+ "plots": [],
71
+ "borders": "true",
72
+ "firstQuartilePercentage": 25,
73
+ "thirdQuartilePercentage": 75,
74
+ "boxWidthPercentage": 40,
75
+ "plotOutlierValues": false,
76
+ "plotNonOutlierValues": true,
77
+ "legend": {
78
+ "showHowToReadText": false,
79
+ "howToReadText": ""
80
+ },
81
+ "labels": {
82
+ "q1": "Lower Quartile",
83
+ "q2": "q2",
84
+ "q3": "Upper Quartile",
85
+ "q4": "q4",
86
+ "minimum": "Minimum",
87
+ "maximum": "Maximum",
88
+ "mean": "Mean",
89
+ "median": "Median",
90
+ "sd": "Standard Deviation",
91
+ "iqr": "Interquartile Range",
92
+ "total": "Total",
93
+ "outliers": "Outliers",
94
+ "values": "Values",
95
+ "lowerBounds": "Lower Bounds",
96
+ "upperBounds": "Upper Bounds"
97
+ }
98
+ },
99
+ "topAxis": {
100
+ "hasLine": false
101
+ },
102
+ "isLegendValue": false,
103
+ "barThickness": 0.35,
104
+ "barHeight": 25,
105
+ "barSpace": 15,
106
+ "heights": {
107
+ "vertical": 300,
108
+ "horizontal": 750
109
+ },
110
+ "xAxis": {
111
+ "sortDates": false,
112
+ "anchors": [],
113
+ "type": "continuous",
114
+ "showTargetLabel": true,
115
+ "targetLabel": "Target",
116
+ "hideAxis": false,
117
+ "hideLabel": false,
118
+ "hideTicks": false,
119
+ "size": "20",
120
+ "tickRotation": 0,
121
+ "min": "",
122
+ "max": "",
123
+ "labelColor": "#333",
124
+ "tickLabelColor": "#333",
125
+ "tickColor": "#333",
126
+ "numTicks": "",
127
+ "labelOffset": "0",
128
+ "axisPadding": 200,
129
+ "target": 0,
130
+ "maxTickRotation": "45",
131
+ "label": "Annual Household Income",
132
+ "dataKey": "Annual Income",
133
+ "axisBBox": 133.94000244140625,
134
+ "tickWidthMax": 76
135
+ },
136
+ "table": {
137
+ "label": "Data Table",
138
+ "expanded": false,
139
+ "limitHeight": false,
140
+ "height": "",
141
+ "caption": "",
142
+ "showDownloadUrl": false,
143
+ "showDataTableLink": true,
144
+ "indexLabel": "",
145
+ "download": true,
146
+ "showVertical": true,
147
+ "dateDisplayFormat": "",
148
+ "showMissingDataLabel": true,
149
+ "showSuppressedSymbol": true,
150
+ "show": true,
151
+ "columnName": "Annual Income",
152
+ "pivot": "Annual Income",
153
+ "showDownloadImgButton": true
154
+ },
155
+ "orientation": "vertical",
156
+ "color": "pinkpurple",
157
+ "columns": {
158
+ "Sex": {
159
+ "label": "Sex",
160
+ "dataTable": true,
161
+ "tooltips": true,
162
+ "prefix": "",
163
+ "suffix": "",
164
+ "forestPlot": false,
165
+ "startingPoint": "0",
166
+ "forestPlotAlignRight": false,
167
+ "roundToPlace": 0,
168
+ "commas": false,
169
+ "showInViz": false,
170
+ "forestPlotStartingPoint": 0,
171
+ "name": "Sex"
172
+ }
173
+ },
174
+ "legend": {
175
+ "hide": false,
176
+ "behavior": "isolate",
177
+ "axisAlign": true,
178
+ "singleRow": true,
179
+ "colorCode": "",
180
+ "reverseLabelOrder": false,
181
+ "description": "",
182
+ "dynamicLegend": false,
183
+ "dynamicLegendDefaultText": "Show All",
184
+ "dynamicLegendItemLimit": 5,
185
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
186
+ "dynamicLegendChartMessage": "Select Options from the Legend",
187
+ "label": "",
188
+ "lineMode": false,
189
+ "verticalSorted": false,
190
+ "highlightOnHover": false,
191
+ "hideSuppressedLabels": false,
192
+ "hideSuppressionLink": false,
193
+ "seriesHighlight": [],
194
+ "style": "circles",
195
+ "subStyle": "linear blocks",
196
+ "tickRotation": "",
197
+ "hideBorder": {
198
+ "side": false,
199
+ "topBottom": true
200
+ }
201
+ },
202
+ "brush": {
203
+ "height": 25,
204
+ "active": false
205
+ },
206
+ "exclusions": {
207
+ "active": false,
208
+ "keys": []
209
+ },
210
+ "palette": "qualitative4",
211
+ "isPaletteReversed": false,
212
+ "twoColor": {
213
+ "palette": "monochrome-1",
214
+ "isPaletteReversed": false
215
+ },
216
+ "labels": false,
217
+ "dataFormat": {
218
+ "commas": false,
219
+ "prefix": "",
220
+ "suffix": "",
221
+ "abbreviated": false,
222
+ "bottomSuffix": "",
223
+ "bottomPrefix": "$",
224
+ "bottomAbbreviated": false,
225
+ "bottomCommas": true
226
+ },
227
+ "confidenceKeys": {},
228
+ "visual": {
229
+ "border": true,
230
+ "accent": true,
231
+ "background": true,
232
+ "verticalHoverLine": false,
233
+ "horizontalHoverLine": false
234
+ },
235
+ "useLogScale": false,
236
+ "filterBehavior": "Filter Change",
237
+ "highlightedBarValues": [],
238
+ "series": [
239
+ {
240
+ "dataKey": "Y1 Score",
241
+ "type": "Scatter Plot",
242
+ "axis": "Left",
243
+ "tooltip": true
244
+ },
245
+ {
246
+ "dataKey": "Y2 Score",
247
+ "type": "Scatter Plot",
248
+ "axis": "Left",
249
+ "tooltip": true
250
+ }
251
+ ],
252
+ "tooltips": {
253
+ "opacity": 90,
254
+ "singleSeries": false,
255
+ "dateDisplayFormat": ""
256
+ },
257
+ "forestPlot": {
258
+ "startAt": 0,
259
+ "colors": {
260
+ "line": "",
261
+ "shape": ""
262
+ },
263
+ "lineOfNoEffect": {
264
+ "show": true
265
+ },
266
+ "type": "",
267
+ "pooledResult": {
268
+ "diamondHeight": 5,
269
+ "column": ""
270
+ },
271
+ "estimateField": "",
272
+ "estimateRadius": "",
273
+ "shape": "square",
274
+ "rowHeight": 20,
275
+ "description": {
276
+ "show": true,
277
+ "text": "description",
278
+ "location": 0
279
+ },
280
+ "result": {
281
+ "show": true,
282
+ "text": "result",
283
+ "location": 100
284
+ },
285
+ "radius": {
286
+ "min": 2,
287
+ "max": 10,
288
+ "scalingColumn": ""
289
+ },
290
+ "regression": {
291
+ "lower": 0,
292
+ "upper": 0,
293
+ "estimateField": 0
294
+ },
295
+ "leftWidthOffset": 0,
296
+ "rightWidthOffset": 0,
297
+ "showZeroLine": false,
298
+ "leftLabel": "",
299
+ "rightLabel": ""
300
+ },
301
+ "area": {
302
+ "isStacked": false
303
+ },
304
+ "sankey": {
305
+ "title": {
306
+ "defaultColor": "black"
307
+ },
308
+ "iterations": 1,
309
+ "rxValue": 0.9,
310
+ "overallSize": {
311
+ "width": 900,
312
+ "height": 700
313
+ },
314
+ "margin": {
315
+ "margin_y": 25,
316
+ "margin_x": 0
317
+ },
318
+ "nodeSize": {
319
+ "nodeWidth": 26,
320
+ "nodeHeight": 40
321
+ },
322
+ "nodePadding": 55,
323
+ "nodeFontColor": "black",
324
+ "nodeColor": {
325
+ "default": "#ff8500",
326
+ "inactive": "#808080"
327
+ },
328
+ "linkColor": {
329
+ "default": "#ffc900",
330
+ "inactive": "#D3D3D3"
331
+ },
332
+ "opacity": {
333
+ "nodeOpacityDefault": 1,
334
+ "nodeOpacityInactive": 0.1,
335
+ "LinkOpacityDefault": 1,
336
+ "LinkOpacityInactive": 0.1
337
+ },
338
+ "storyNodeFontColor": "#006778",
339
+ "storyNodeText": [],
340
+ "nodeValueStyle": {
341
+ "textBefore": "(",
342
+ "textAfter": ")"
343
+ },
344
+ "data": []
345
+ },
346
+ "datasets": {},
347
+ "visualizationType": "Scatter Plot",
348
+ "data": [
349
+ {
350
+ "Sex": "Male",
351
+ "Y1 Score": "4",
352
+ "Y2 Score": "5",
353
+ "Annual Income": "52000"
354
+ },
355
+ {
356
+ "Sex": "Male",
357
+ "Y1 Score": "5",
358
+ "Y2 Score": "6",
359
+ "Annual Income": "78000"
360
+ },
361
+ {
362
+ "Sex": "Male",
363
+ "Y1 Score": "7",
364
+ "Y2 Score": "8",
365
+ "Annual Income": "110000"
366
+ },
367
+ {
368
+ "Sex": "Male",
369
+ "Y1 Score": "5",
370
+ "Y2 Score": "6",
371
+ "Annual Income": "85000"
372
+ },
373
+ {
374
+ "Sex": "Male",
375
+ "Y1 Score": "6",
376
+ "Y2 Score": "7",
377
+ "Annual Income": "88000"
378
+ },
379
+ {
380
+ "Sex": "Male",
381
+ "Y1 Score": "2",
382
+ "Y2 Score": "4",
383
+ "Annual Income": "32000"
384
+ },
385
+ {
386
+ "Sex": "Male",
387
+ "Y1 Score": "4",
388
+ "Y2 Score": "5",
389
+ "Annual Income": "77000"
390
+ },
391
+ {
392
+ "Sex": "Male",
393
+ "Y1 Score": "7",
394
+ "Y2 Score": "7",
395
+ "Annual Income": "120000"
396
+ },
397
+ {
398
+ "Sex": "Male",
399
+ "Y1 Score": "2",
400
+ "Y2 Score": "3",
401
+ "Annual Income": "21000"
402
+ },
403
+ {
404
+ "Sex": "Male",
405
+ "Y1 Score": "7",
406
+ "Y2 Score": "8",
407
+ "Annual Income": "98000"
408
+ },
409
+ {
410
+ "Sex": "Male",
411
+ "Y1 Score": "8",
412
+ "Y2 Score": "8",
413
+ "Annual Income": "132000"
414
+ },
415
+ {
416
+ "Sex": "Male",
417
+ "Y1 Score": "8",
418
+ "Y2 Score": "9",
419
+ "Annual Income": "146000"
420
+ },
421
+ {
422
+ "Sex": "Male",
423
+ "Y1 Score": "6",
424
+ "Y2 Score": "5",
425
+ "Annual Income": "98000"
426
+ },
427
+ {
428
+ "Sex": "Male",
429
+ "Y1 Score": "5",
430
+ "Y2 Score": "6",
431
+ "Annual Income": "86000"
432
+ },
433
+ {
434
+ "Sex": "Male",
435
+ "Y1 Score": "3",
436
+ "Y2 Score": "5",
437
+ "Annual Income": "45000"
438
+ },
439
+ {
440
+ "Sex": "Male",
441
+ "Y1 Score": "1",
442
+ "Y2 Score": "4",
443
+ "Annual Income": "21000"
444
+ },
445
+ {
446
+ "Sex": "Male",
447
+ "Y1 Score": "5",
448
+ "Y2 Score": "6",
449
+ "Annual Income": "92000"
450
+ },
451
+ {
452
+ "Sex": "Male",
453
+ "Y1 Score": "5",
454
+ "Y2 Score": "6",
455
+ "Annual Income": "68000"
456
+ },
457
+ {
458
+ "Sex": "Male",
459
+ "Y1 Score": "7",
460
+ "Y2 Score": "8",
461
+ "Annual Income": "54000"
462
+ },
463
+ {
464
+ "Sex": "Male",
465
+ "Y1 Score": "4",
466
+ "Y2 Score": "5",
467
+ "Annual Income": "55000"
468
+ },
469
+ {
470
+ "Sex": "Male",
471
+ "Y1 Score": "6",
472
+ "Y2 Score": "7",
473
+ "Annual Income": "102000"
474
+ },
475
+ {
476
+ "Sex": "Male",
477
+ "Y1 Score": "2",
478
+ "Y2 Score": "3",
479
+ "Annual Income": "32000"
480
+ },
481
+ {
482
+ "Sex": "Male",
483
+ "Y1 Score": "4",
484
+ "Y2 Score": "5",
485
+ "Annual Income": "67000"
486
+ },
487
+ {
488
+ "Sex": "Male",
489
+ "Y1 Score": "7",
490
+ "Y2 Score": "8",
491
+ "Annual Income": "68000"
492
+ },
493
+ {
494
+ "Sex": "Male",
495
+ "Y1 Score": "2",
496
+ "Y2 Score": "5",
497
+ "Annual Income": "28000"
498
+ },
499
+ {
500
+ "Sex": "Male",
501
+ "Y1 Score": "7",
502
+ "Y2 Score": "8",
503
+ "Annual Income": "126000"
504
+ },
505
+ {
506
+ "Sex": "Male",
507
+ "Y1 Score": "8",
508
+ "Y2 Score": "9",
509
+ "Annual Income": "168000"
510
+ },
511
+ {
512
+ "Sex": "Male",
513
+ "Y1 Score": "8",
514
+ "Y2 Score": "9",
515
+ "Annual Income": "178000"
516
+ },
517
+ {
518
+ "Sex": "Male",
519
+ "Y1 Score": "6",
520
+ "Y2 Score": "7",
521
+ "Annual Income": "86000"
522
+ },
523
+ {
524
+ "Sex": "Male",
525
+ "Y1 Score": "5",
526
+ "Y2 Score": "6",
527
+ "Annual Income": "66000"
528
+ },
529
+ {
530
+ "Sex": "Male",
531
+ "Y1 Score": "3",
532
+ "Y2 Score": "7",
533
+ "Annual Income": "42000"
534
+ },
535
+ {
536
+ "Sex": "Male",
537
+ "Y1 Score": "1",
538
+ "Y2 Score": "3",
539
+ "Annual Income": "14000"
540
+ },
541
+ {
542
+ "Sex": "Male",
543
+ "Y1 Score": "5",
544
+ "Y2 Score": "6",
545
+ "Annual Income": "72000"
546
+ },
547
+ {
548
+ "Sex": "Male",
549
+ "Y1 Score": "5",
550
+ "Y2 Score": "6",
551
+ "Annual Income": "78000"
552
+ },
553
+ {
554
+ "Sex": "Male",
555
+ "Y1 Score": "7",
556
+ "Y2 Score": "8",
557
+ "Annual Income": "132000"
558
+ },
559
+ {
560
+ "Sex": "Male",
561
+ "Y1 Score": "4",
562
+ "Y2 Score": "5",
563
+ "Annual Income": "75000"
564
+ },
565
+ {
566
+ "Sex": "Male",
567
+ "Y1 Score": "6",
568
+ "Y2 Score": "7",
569
+ "Annual Income": "89000"
570
+ },
571
+ {
572
+ "Sex": "Male",
573
+ "Y1 Score": "2",
574
+ "Y2 Score": "6",
575
+ "Annual Income": "32000"
576
+ },
577
+ {
578
+ "Sex": "Male",
579
+ "Y1 Score": "4",
580
+ "Y2 Score": "5",
581
+ "Annual Income": "64000"
582
+ },
583
+ {
584
+ "Sex": "Male",
585
+ "Y1 Score": "7",
586
+ "Y2 Score": "8",
587
+ "Annual Income": "104000"
588
+ },
589
+ {
590
+ "Sex": "Male",
591
+ "Y1 Score": "2",
592
+ "Y2 Score": "4",
593
+ "Annual Income": "29000"
594
+ },
595
+ {
596
+ "Sex": "Male",
597
+ "Y1 Score": "7",
598
+ "Y2 Score": "8",
599
+ "Annual Income": "78000"
600
+ },
601
+ {
602
+ "Sex": "Male",
603
+ "Y1 Score": "8",
604
+ "Y2 Score": "9",
605
+ "Annual Income": "136000"
606
+ },
607
+ {
608
+ "Sex": "Male",
609
+ "Y1 Score": "8",
610
+ "Y2 Score": "9",
611
+ "Annual Income": "232000"
612
+ },
613
+ {
614
+ "Sex": "Male",
615
+ "Y1 Score": "6",
616
+ "Y2 Score": "7",
617
+ "Annual Income": "105000"
618
+ },
619
+ {
620
+ "Sex": "Male",
621
+ "Y1 Score": "5",
622
+ "Y2 Score": "6",
623
+ "Annual Income": "86000"
624
+ },
625
+ {
626
+ "Sex": "Male",
627
+ "Y1 Score": "3",
628
+ "Y2 Score": "4",
629
+ "Annual Income": "56000"
630
+ },
631
+ {
632
+ "Sex": "Male",
633
+ "Y1 Score": "1",
634
+ "Y2 Score": "2",
635
+ "Annual Income": "26000"
636
+ },
637
+ {
638
+ "Sex": "Male",
639
+ "Y1 Score": "5",
640
+ "Y2 Score": "6",
641
+ "Annual Income": "120000"
642
+ },
643
+ {
644
+ "Sex": "Male",
645
+ "Y1 Score": "5",
646
+ "Y2 Score": "6",
647
+ "Annual Income": "68000"
648
+ },
649
+ {
650
+ "Sex": "Male",
651
+ "Y1 Score": "7",
652
+ "Y2 Score": "8",
653
+ "Annual Income": "67000"
654
+ },
655
+ {
656
+ "Sex": "Male",
657
+ "Y1 Score": "4",
658
+ "Y2 Score": "5",
659
+ "Annual Income": "78000"
660
+ },
661
+ {
662
+ "Sex": "Male",
663
+ "Y1 Score": "6",
664
+ "Y2 Score": "7",
665
+ "Annual Income": "101000"
666
+ },
667
+ {
668
+ "Sex": "Male",
669
+ "Y1 Score": "2",
670
+ "Y2 Score": "4",
671
+ "Annual Income": "32000"
672
+ },
673
+ {
674
+ "Sex": "Male",
675
+ "Y1 Score": "4",
676
+ "Y2 Score": "5",
677
+ "Annual Income": "71000"
678
+ },
679
+ {
680
+ "Sex": "Male",
681
+ "Y1 Score": "7",
682
+ "Y2 Score": "8",
683
+ "Annual Income": "136000"
684
+ },
685
+ {
686
+ "Sex": "Male",
687
+ "Y1 Score": "2",
688
+ "Y2 Score": "3",
689
+ "Annual Income": "36000"
690
+ },
691
+ {
692
+ "Sex": "Male",
693
+ "Y1 Score": "7",
694
+ "Y2 Score": "8",
695
+ "Annual Income": "124000"
696
+ },
697
+ {
698
+ "Sex": "Male",
699
+ "Y1 Score": "8",
700
+ "Y2 Score": "9",
701
+ "Annual Income": "202000"
702
+ },
703
+ {
704
+ "Sex": "Male",
705
+ "Y1 Score": "8",
706
+ "Y2 Score": "9",
707
+ "Annual Income": "206000"
708
+ },
709
+ {
710
+ "Sex": "Male",
711
+ "Y1 Score": "6",
712
+ "Y2 Score": "7",
713
+ "Annual Income": "78000"
714
+ },
715
+ {
716
+ "Sex": "Male",
717
+ "Y1 Score": "5",
718
+ "Y2 Score": "6",
719
+ "Annual Income": "56000"
720
+ },
721
+ {
722
+ "Sex": "Male",
723
+ "Y1 Score": "3",
724
+ "Y2 Score": "4",
725
+ "Annual Income": "62000"
726
+ },
727
+ {
728
+ "Sex": "Male",
729
+ "Y1 Score": "1",
730
+ "Y2 Score": "3",
731
+ "Annual Income": "27000"
732
+ },
733
+ {
734
+ "Sex": "Male",
735
+ "Y1 Score": "9",
736
+ "Y2 Score": "10",
737
+ "Annual Income": "168000"
738
+ },
739
+ {
740
+ "Sex": "Male",
741
+ "Y1 Score": "9",
742
+ "Y2 Score": "7",
743
+ "Annual Income": "252000"
744
+ },
745
+ {
746
+ "Sex": "Male",
747
+ "Y1 Score": "9",
748
+ "Y2 Score": "8",
749
+ "Annual Income": "208000"
750
+ },
751
+ {
752
+ "Sex": "Male",
753
+ "Y1 Score": "9",
754
+ "Y2 Score": "10",
755
+ "Annual Income": "278000"
756
+ },
757
+ {
758
+ "Sex": "Male",
759
+ "Y1 Score": "9",
760
+ "Y2 Score": "10",
761
+ "Annual Income": "306000"
762
+ },
763
+ {
764
+ "Sex": "Male",
765
+ "Y1 Score": "9",
766
+ "Y2 Score": "10",
767
+ "Annual Income": "112000"
768
+ },
769
+ {
770
+ "Sex": "Male",
771
+ "Y1 Score": "10",
772
+ "Y2 Score": "10",
773
+ "Annual Income": "256000"
774
+ },
775
+ {
776
+ "Sex": "Male",
777
+ "Y1 Score": "10",
778
+ "Y2 Score": "8",
779
+ "Annual Income": "288000"
780
+ },
781
+ {
782
+ "Sex": "Male",
783
+ "Y1 Score": "10",
784
+ "Y2 Score": "9",
785
+ "Annual Income": "152000"
786
+ },
787
+ {
788
+ "Sex": "Female",
789
+ "Y1 Score": "5",
790
+ "Y2 Score": "5",
791
+ "Annual Income": "48000"
792
+ },
793
+ {
794
+ "Sex": "Female",
795
+ "Y1 Score": "5",
796
+ "Y2 Score": "6",
797
+ "Annual Income": "80000"
798
+ },
799
+ {
800
+ "Sex": "Female",
801
+ "Y1 Score": "7",
802
+ "Y2 Score": "8",
803
+ "Annual Income": "110000"
804
+ },
805
+ {
806
+ "Sex": "Female",
807
+ "Y1 Score": "5",
808
+ "Y2 Score": "6",
809
+ "Annual Income": "85000"
810
+ },
811
+ {
812
+ "Sex": "Female",
813
+ "Y1 Score": "6",
814
+ "Y2 Score": "7",
815
+ "Annual Income": "88000"
816
+ },
817
+ {
818
+ "Sex": "Female",
819
+ "Y1 Score": "3",
820
+ "Y2 Score": "4",
821
+ "Annual Income": "32000"
822
+ },
823
+ {
824
+ "Sex": "Female",
825
+ "Y1 Score": "4",
826
+ "Y2 Score": "5",
827
+ "Annual Income": "77000"
828
+ },
829
+ {
830
+ "Sex": "Female",
831
+ "Y1 Score": "7",
832
+ "Y2 Score": "7",
833
+ "Annual Income": "127000"
834
+ },
835
+ {
836
+ "Sex": "Female",
837
+ "Y1 Score": "2",
838
+ "Y2 Score": "3",
839
+ "Annual Income": "24000"
840
+ },
841
+ {
842
+ "Sex": "Female",
843
+ "Y1 Score": "7",
844
+ "Y2 Score": "8",
845
+ "Annual Income": "98000"
846
+ },
847
+ {
848
+ "Sex": "Female",
849
+ "Y1 Score": "8",
850
+ "Y2 Score": "8",
851
+ "Annual Income": "132000"
852
+ },
853
+ {
854
+ "Sex": "Female",
855
+ "Y1 Score": "8",
856
+ "Y2 Score": "9",
857
+ "Annual Income": "146000"
858
+ },
859
+ {
860
+ "Sex": "Female",
861
+ "Y1 Score": "6",
862
+ "Y2 Score": "5",
863
+ "Annual Income": "98000"
864
+ },
865
+ {
866
+ "Sex": "Female",
867
+ "Y1 Score": "5",
868
+ "Y2 Score": "6",
869
+ "Annual Income": "86000"
870
+ },
871
+ {
872
+ "Sex": "Female",
873
+ "Y1 Score": "3",
874
+ "Y2 Score": "5",
875
+ "Annual Income": "45000"
876
+ },
877
+ {
878
+ "Sex": "Female",
879
+ "Y1 Score": "1",
880
+ "Y2 Score": "4",
881
+ "Annual Income": "21000"
882
+ },
883
+ {
884
+ "Sex": "Female",
885
+ "Y1 Score": "5",
886
+ "Y2 Score": "6",
887
+ "Annual Income": "92000"
888
+ },
889
+ {
890
+ "Sex": "Female",
891
+ "Y1 Score": "5",
892
+ "Y2 Score": "6",
893
+ "Annual Income": "68000"
894
+ },
895
+ {
896
+ "Sex": "Female",
897
+ "Y1 Score": "7",
898
+ "Y2 Score": "8",
899
+ "Annual Income": "54000"
900
+ },
901
+ {
902
+ "Sex": "Female",
903
+ "Y1 Score": "4",
904
+ "Y2 Score": "5",
905
+ "Annual Income": "55000"
906
+ },
907
+ {
908
+ "Sex": "Female",
909
+ "Y1 Score": "6",
910
+ "Y2 Score": "7",
911
+ "Annual Income": "102000"
912
+ },
913
+ {
914
+ "Sex": "Female",
915
+ "Y1 Score": "2",
916
+ "Y2 Score": "3",
917
+ "Annual Income": "32000"
918
+ },
919
+ {
920
+ "Sex": "Female",
921
+ "Y1 Score": "4",
922
+ "Y2 Score": "5",
923
+ "Annual Income": "67000"
924
+ },
925
+ {
926
+ "Sex": "Female",
927
+ "Y1 Score": "7",
928
+ "Y2 Score": "8",
929
+ "Annual Income": "68000"
930
+ },
931
+ {
932
+ "Sex": "Female",
933
+ "Y1 Score": "2",
934
+ "Y2 Score": "5",
935
+ "Annual Income": "28000"
936
+ },
937
+ {
938
+ "Sex": "Female",
939
+ "Y1 Score": "7",
940
+ "Y2 Score": "8",
941
+ "Annual Income": "126000"
942
+ },
943
+ {
944
+ "Sex": "Female",
945
+ "Y1 Score": "8",
946
+ "Y2 Score": "9",
947
+ "Annual Income": "168000"
948
+ },
949
+ {
950
+ "Sex": "Female",
951
+ "Y1 Score": "8",
952
+ "Y2 Score": "9",
953
+ "Annual Income": "178000"
954
+ },
955
+ {
956
+ "Sex": "Female",
957
+ "Y1 Score": "6",
958
+ "Y2 Score": "7",
959
+ "Annual Income": "86000"
960
+ },
961
+ {
962
+ "Sex": "Female",
963
+ "Y1 Score": "5",
964
+ "Y2 Score": "6",
965
+ "Annual Income": "66000"
966
+ },
967
+ {
968
+ "Sex": "Female",
969
+ "Y1 Score": "3",
970
+ "Y2 Score": "7",
971
+ "Annual Income": "42000"
972
+ },
973
+ {
974
+ "Sex": "Female",
975
+ "Y1 Score": "1",
976
+ "Y2 Score": "3",
977
+ "Annual Income": "18000"
978
+ },
979
+ {
980
+ "Sex": "Female",
981
+ "Y1 Score": "5",
982
+ "Y2 Score": "6",
983
+ "Annual Income": "72000"
984
+ },
985
+ {
986
+ "Sex": "Female",
987
+ "Y1 Score": "5",
988
+ "Y2 Score": "6",
989
+ "Annual Income": "78000"
990
+ },
991
+ {
992
+ "Sex": "Female",
993
+ "Y1 Score": "7",
994
+ "Y2 Score": "8",
995
+ "Annual Income": "132000"
996
+ },
997
+ {
998
+ "Sex": "Female",
999
+ "Y1 Score": "4",
1000
+ "Y2 Score": "5",
1001
+ "Annual Income": "75000"
1002
+ },
1003
+ {
1004
+ "Sex": "Female",
1005
+ "Y1 Score": "6",
1006
+ "Y2 Score": "7",
1007
+ "Annual Income": "89000"
1008
+ },
1009
+ {
1010
+ "Sex": "Female",
1011
+ "Y1 Score": "2",
1012
+ "Y2 Score": "6",
1013
+ "Annual Income": "32000"
1014
+ },
1015
+ {
1016
+ "Sex": "Female",
1017
+ "Y1 Score": "4",
1018
+ "Y2 Score": "5",
1019
+ "Annual Income": "64000"
1020
+ },
1021
+ {
1022
+ "Sex": "Female",
1023
+ "Y1 Score": "7",
1024
+ "Y2 Score": "8",
1025
+ "Annual Income": "104000"
1026
+ },
1027
+ {
1028
+ "Sex": "Female",
1029
+ "Y1 Score": "2",
1030
+ "Y2 Score": "4",
1031
+ "Annual Income": "29000"
1032
+ },
1033
+ {
1034
+ "Sex": "Female",
1035
+ "Y1 Score": "7",
1036
+ "Y2 Score": "8",
1037
+ "Annual Income": "78000"
1038
+ },
1039
+ {
1040
+ "Sex": "Female",
1041
+ "Y1 Score": "8",
1042
+ "Y2 Score": "9",
1043
+ "Annual Income": "136000"
1044
+ },
1045
+ {
1046
+ "Sex": "Female",
1047
+ "Y1 Score": "8",
1048
+ "Y2 Score": "9",
1049
+ "Annual Income": "232000"
1050
+ },
1051
+ {
1052
+ "Sex": "Female",
1053
+ "Y1 Score": "6",
1054
+ "Y2 Score": "7",
1055
+ "Annual Income": "105000"
1056
+ },
1057
+ {
1058
+ "Sex": "Female",
1059
+ "Y1 Score": "5",
1060
+ "Y2 Score": "6",
1061
+ "Annual Income": "86000"
1062
+ },
1063
+ {
1064
+ "Sex": "Female",
1065
+ "Y1 Score": "3",
1066
+ "Y2 Score": "4",
1067
+ "Annual Income": "56000"
1068
+ },
1069
+ {
1070
+ "Sex": "Female",
1071
+ "Y1 Score": "3",
1072
+ "Y2 Score": "2",
1073
+ "Annual Income": "26000"
1074
+ },
1075
+ {
1076
+ "Sex": "Female",
1077
+ "Y1 Score": "5",
1078
+ "Y2 Score": "6",
1079
+ "Annual Income": "120000"
1080
+ },
1081
+ {
1082
+ "Sex": "Female",
1083
+ "Y1 Score": "5",
1084
+ "Y2 Score": "6",
1085
+ "Annual Income": "68000"
1086
+ },
1087
+ {
1088
+ "Sex": "Female",
1089
+ "Y1 Score": "7",
1090
+ "Y2 Score": "8",
1091
+ "Annual Income": "67000"
1092
+ },
1093
+ {
1094
+ "Sex": "Female",
1095
+ "Y1 Score": "4",
1096
+ "Y2 Score": "5",
1097
+ "Annual Income": "78000"
1098
+ },
1099
+ {
1100
+ "Sex": "Female",
1101
+ "Y1 Score": "6",
1102
+ "Y2 Score": "7",
1103
+ "Annual Income": "101000"
1104
+ },
1105
+ {
1106
+ "Sex": "Female",
1107
+ "Y1 Score": "2",
1108
+ "Y2 Score": "4",
1109
+ "Annual Income": "32000"
1110
+ },
1111
+ {
1112
+ "Sex": "Female",
1113
+ "Y1 Score": "4",
1114
+ "Y2 Score": "5",
1115
+ "Annual Income": "71000"
1116
+ },
1117
+ {
1118
+ "Sex": "Female",
1119
+ "Y1 Score": "7",
1120
+ "Y2 Score": "8",
1121
+ "Annual Income": "136000"
1122
+ },
1123
+ {
1124
+ "Sex": "Female",
1125
+ "Y1 Score": "2",
1126
+ "Y2 Score": "3",
1127
+ "Annual Income": "36000"
1128
+ },
1129
+ {
1130
+ "Sex": "Female",
1131
+ "Y1 Score": "7",
1132
+ "Y2 Score": "8",
1133
+ "Annual Income": "124000"
1134
+ },
1135
+ {
1136
+ "Sex": "Female",
1137
+ "Y1 Score": "8",
1138
+ "Y2 Score": "9",
1139
+ "Annual Income": "200000"
1140
+ },
1141
+ {
1142
+ "Sex": "Female",
1143
+ "Y1 Score": "8",
1144
+ "Y2 Score": "9",
1145
+ "Annual Income": "206000"
1146
+ },
1147
+ {
1148
+ "Sex": "Female",
1149
+ "Y1 Score": "6",
1150
+ "Y2 Score": "9",
1151
+ "Annual Income": "78000"
1152
+ },
1153
+ {
1154
+ "Sex": "Female",
1155
+ "Y1 Score": "5",
1156
+ "Y2 Score": "7",
1157
+ "Annual Income": "56000"
1158
+ },
1159
+ {
1160
+ "Sex": "Female",
1161
+ "Y1 Score": "3",
1162
+ "Y2 Score": "5",
1163
+ "Annual Income": "68000"
1164
+ },
1165
+ {
1166
+ "Sex": "Female",
1167
+ "Y1 Score": "3",
1168
+ "Y2 Score": "3",
1169
+ "Annual Income": "27000"
1170
+ },
1171
+ {
1172
+ "Sex": "Female",
1173
+ "Y1 Score": "9",
1174
+ "Y2 Score": "10",
1175
+ "Annual Income": "168000"
1176
+ },
1177
+ {
1178
+ "Sex": "Female",
1179
+ "Y1 Score": "9",
1180
+ "Y2 Score": "6",
1181
+ "Annual Income": "205000"
1182
+ },
1183
+ {
1184
+ "Sex": "Female",
1185
+ "Y1 Score": "9",
1186
+ "Y2 Score": "8",
1187
+ "Annual Income": "208000"
1188
+ },
1189
+ {
1190
+ "Sex": "Female",
1191
+ "Y1 Score": "9",
1192
+ "Y2 Score": "10",
1193
+ "Annual Income": "278000"
1194
+ },
1195
+ {
1196
+ "Sex": "Female",
1197
+ "Y1 Score": "9",
1198
+ "Y2 Score": "10",
1199
+ "Annual Income": "308000"
1200
+ },
1201
+ {
1202
+ "Sex": "Female",
1203
+ "Y1 Score": "8",
1204
+ "Y2 Score": "10",
1205
+ "Annual Income": "112000"
1206
+ },
1207
+ {
1208
+ "Sex": "Female",
1209
+ "Y1 Score": "10",
1210
+ "Y2 Score": "10",
1211
+ "Annual Income": "256000"
1212
+ },
1213
+ {
1214
+ "Sex": "Female",
1215
+ "Y1 Score": "10",
1216
+ "Y2 Score": "8",
1217
+ "Annual Income": "288000"
1218
+ },
1219
+ {
1220
+ "Sex": "Female",
1221
+ "Y1 Score": "10",
1222
+ "Y2 Score": "9",
1223
+ "Annual Income": "175000"
1224
+ }
1225
+ ],
1226
+ "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/59-scatter-plot-tight-correlation-multiple-series-sexFilter.csv",
1227
+ "dataFileSourceType": "url",
1228
+ "version": "4.24.9",
1229
+ "dynamicMarginTop": 104,
1230
+ "filters": [
1231
+ {
1232
+ "values": [
1233
+ "Male",
1234
+ "Female"
1235
+ ],
1236
+ "filterStyle": "tab",
1237
+ "id": 1725636095102,
1238
+ "active": "Male",
1239
+ "columnName": "Sex",
1240
+ "order": "desc",
1241
+ "label": "Sex"
1242
+ }
1243
+ ]
1244
+ }