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