@cdc/chart 4.23.7 → 4.23.8

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 (38) hide show
  1. package/LICENSE +201 -0
  2. package/dist/cdcchart.js +27964 -26942
  3. package/examples/feature/__data__/area-chart-date-apple.json +5122 -0
  4. package/examples/feature/__data__/city-temperature.json +2198 -0
  5. package/examples/feature/area/area-chart-category.json +45 -45
  6. package/examples/feature/area/area-chart-date-apple.json +10376 -0
  7. package/examples/feature/area/area-chart-date-city-temperature.json +4528 -0
  8. package/examples/feature/area/area-chart-date.json +111 -3
  9. package/examples/feature/forest-plot/broken.json +700 -0
  10. package/examples/feature/forest-plot/data.csv +24 -0
  11. package/examples/feature/forest-plot/forest-plot.json +717 -0
  12. package/examples/feature/pie/planet-pie-example-config.json +1 -1
  13. package/examples/private/confidence_interval_test.json +248 -0
  14. package/examples/private/tooltip-issue.json +45275 -0
  15. package/index.html +13 -11
  16. package/package.json +4 -3
  17. package/src/CdcChart.jsx +24 -14
  18. package/src/components/AreaChart.jsx +84 -59
  19. package/src/components/BarChart.Horizontal.jsx +251 -0
  20. package/src/components/BarChart.StackedHorizontal.jsx +118 -0
  21. package/src/components/BarChart.StackedVertical.jsx +93 -0
  22. package/src/components/BarChart.Vertical.jsx +204 -0
  23. package/src/components/BarChart.jsx +14 -674
  24. package/src/components/BarChartType.jsx +15 -0
  25. package/src/components/BrushHandle.jsx +17 -0
  26. package/src/components/DataTable.jsx +63 -21
  27. package/src/components/EditorPanel.jsx +351 -303
  28. package/src/components/ForestPlot.jsx +191 -0
  29. package/src/components/ForestPlotSettings.jsx +508 -0
  30. package/src/components/LineChart.jsx +2 -2
  31. package/src/components/LinearChart.jsx +115 -310
  32. package/src/data/initial-state.js +43 -0
  33. package/src/hooks/useBarChart.js +186 -0
  34. package/src/hooks/useEditorPermissions.js +218 -0
  35. package/src/hooks/useMinMax.js +15 -3
  36. package/src/hooks/useScales.js +45 -2
  37. package/src/hooks/useTooltip.jsx +407 -0
  38. package/src/scss/main.scss +7 -0
@@ -0,0 +1,700 @@
1
+ {
2
+ "type": "chart",
3
+ "debugSvg": false,
4
+ "title": "",
5
+ "showTitle": true,
6
+ "showDownloadMediaButton": false,
7
+ "showChartBrush": false,
8
+ "theme": "theme-blue",
9
+ "animate": false,
10
+ "fontSize": "medium",
11
+ "lineDatapointStyle": "hover",
12
+ "barHasBorder": "false",
13
+ "isLollipopChart": false,
14
+ "lollipopShape": "circle",
15
+ "lollipopColorStyle": "two-tone",
16
+ "visualizationSubType": "regular",
17
+ "barStyle": "",
18
+ "roundingStyle": "standard",
19
+ "tipRounding": "top",
20
+ "isResponsiveTicks": false,
21
+ "general": {
22
+ "showDownloadButton": false
23
+ },
24
+ "padding": {
25
+ "left": 5,
26
+ "right": 5
27
+ },
28
+ "yAxis": {
29
+ "hideAxis": false,
30
+ "displayNumbersOnBar": false,
31
+ "hideLabel": false,
32
+ "hideTicks": false,
33
+ "size": 50,
34
+ "gridLines": false,
35
+ "enablePadding": false,
36
+ "min": "",
37
+ "max": "",
38
+ "labelColor": "#333",
39
+ "tickLabelColor": "#333",
40
+ "tickColor": "#333",
41
+ "rightHideAxis": true,
42
+ "rightAxisSize": 0,
43
+ "rightLabel": "",
44
+ "rightLabelOffsetSize": 0,
45
+ "rightAxisLabelColor": "#333",
46
+ "rightAxisTickLabelColor": "#333",
47
+ "rightAxisTickColor": "#333",
48
+ "numTicks": "",
49
+ "axisPadding": 0,
50
+ "tickRotation": 0,
51
+ "anchors": []
52
+ },
53
+ "boxplot": {
54
+ "plots": [],
55
+ "borders": "true",
56
+ "firstQuartilePercentage": 25,
57
+ "thirdQuartilePercentage": 75,
58
+ "boxWidthPercentage": 40,
59
+ "plotOutlierValues": false,
60
+ "plotNonOutlierValues": true,
61
+ "legend": {
62
+ "showHowToReadText": false,
63
+ "howToReadText": ""
64
+ },
65
+ "labels": {
66
+ "q1": "Lower Quartile",
67
+ "q2": "q2",
68
+ "q3": "Upper Quartile",
69
+ "q4": "q4",
70
+ "minimum": "Minimum",
71
+ "maximum": "Maximum",
72
+ "mean": "Mean",
73
+ "median": "Median",
74
+ "sd": "Standard Deviation",
75
+ "iqr": "Interquartile Range",
76
+ "total": "Total",
77
+ "outliers": "Outliers",
78
+ "values": "Values",
79
+ "lowerBounds": "Lower Bounds",
80
+ "upperBounds": "Upper Bounds"
81
+ }
82
+ },
83
+ "topAxis": {
84
+ "hasLine": false
85
+ },
86
+ "isLegendValue": false,
87
+ "barThickness": 0.35,
88
+ "barHeight": 25,
89
+ "barSpace": 15,
90
+ "heights": {
91
+ "vertical": 300,
92
+ "horizontal": 750
93
+ },
94
+ "xAxis": {
95
+ "anchors": [],
96
+ "type": "categorical",
97
+ "showTargetLabel": true,
98
+ "targetLabel": "Target",
99
+ "hideAxis": false,
100
+ "hideLabel": false,
101
+ "hideTicks": false,
102
+ "size": 0,
103
+ "tickRotation": 0,
104
+ "min": "",
105
+ "max": "",
106
+ "labelColor": "#333",
107
+ "tickLabelColor": "#333",
108
+ "tickColor": "#333",
109
+ "numTicks": "",
110
+ "labelOffset": 65,
111
+ "axisPadding": 0,
112
+ "target": 0,
113
+ "maxTickRotation": 0,
114
+ "dataKey": "Author(s) and Year"
115
+ },
116
+ "table": {
117
+ "label": "Data Table",
118
+ "expanded": true,
119
+ "limitHeight": false,
120
+ "height": "",
121
+ "caption": "",
122
+ "showDownloadUrl": false,
123
+ "showDataTableLink": true,
124
+ "indexLabel": "",
125
+ "download": false,
126
+ "showVertical": true,
127
+ "show": true
128
+ },
129
+ "orientation": "horizontal",
130
+ "color": "pinkpurple",
131
+ "columns": {},
132
+ "legend": {
133
+ "behavior": "isolate",
134
+ "singleRow": false,
135
+ "colorCode": "",
136
+ "reverseLabelOrder": false,
137
+ "description": "",
138
+ "dynamicLegend": false,
139
+ "dynamicLegendDefaultText": "Show All",
140
+ "dynamicLegendItemLimit": 5,
141
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
142
+ "dynamicLegendChartMessage": "Select Options from the Legend",
143
+ "hide": true
144
+ },
145
+ "exclusions": {
146
+ "active": false,
147
+ "keys": []
148
+ },
149
+ "palette": "qualitative-bold",
150
+ "isPaletteReversed": false,
151
+ "twoColor": {
152
+ "palette": "monochrome-1",
153
+ "isPaletteReversed": false
154
+ },
155
+ "labels": false,
156
+ "dataFormat": {
157
+ "commas": false,
158
+ "prefix": "",
159
+ "suffix": "",
160
+ "abbreviated": false,
161
+ "bottomSuffix": "",
162
+ "bottomPrefix": "",
163
+ "bottomAbbreviated": false
164
+ },
165
+ "confidenceKeys": {},
166
+ "visual": {
167
+ "border": true,
168
+ "accent": true,
169
+ "background": true,
170
+ "verticalHoverLine": false,
171
+ "horizontalHoverLine": false
172
+ },
173
+ "useLogScale": false,
174
+ "filterBehavior": "Filter Change",
175
+ "highlightedBarValues": [],
176
+ "series": [],
177
+ "tooltips": {
178
+ "opacity": 90
179
+ },
180
+ "forestPlot": {
181
+ "startAt": 0,
182
+ "width": "auto",
183
+ "colors": {
184
+ "line": "",
185
+ "shape": ""
186
+ },
187
+ "estimateField": "Estimate",
188
+ "estimateRadius": "",
189
+ "lowerCiField": "",
190
+ "upperCiField": "",
191
+ "shape": "circle",
192
+ "rowHeight": 20,
193
+ "showZeroLine": false,
194
+ "description": {
195
+ "show": true,
196
+ "text": "description",
197
+ "location": 0
198
+ },
199
+ "result": {
200
+ "show": true,
201
+ "text": "result",
202
+ "location": 100
203
+ },
204
+ "radius": {
205
+ "min": 1,
206
+ "max": 8,
207
+ "scalingColumn": ""
208
+ },
209
+ "regression": {
210
+ "lower": 0,
211
+ "upper": 0,
212
+ "estimateField": 0
213
+ },
214
+ "leftWidthOffset": "17",
215
+ "rightWidthOffset": "30",
216
+ "lower": "Lower",
217
+ "upper": "Upper",
218
+ "rightWidthOffsetMobile": "0",
219
+ "title": "test",
220
+ "leftWidthOffsetMobile": "51"
221
+ },
222
+ "brush": {
223
+ "pattern_id": "brush_pattern",
224
+ "accent_color": "#ddd"
225
+ },
226
+ "datasets": {},
227
+ "visualizationType": "Forest Plot",
228
+ "data": [
229
+ {
230
+ "Author(s) and Year": "Spears, 1983",
231
+ "Confidence": "H",
232
+ "Timing": "T3",
233
+ "N": "170",
234
+ "Estimate": "0.2",
235
+ "Lower": "-35.7",
236
+ "Upper": "36.2",
237
+ "Result": "0.2 [-35.7, 36.2]"
238
+ },
239
+ {
240
+ "Author(s) and Year": "Moran, 1998",
241
+ "Confidence": "H",
242
+ "Timing": "B",
243
+ "N": "2183",
244
+ "Estimate": "33.4",
245
+ "Lower": "-109.5",
246
+ "Upper": "176.3",
247
+ "Result": "33.4 [-109.5, 176.3]"
248
+ },
249
+ {
250
+ "Author(s) and Year": "Lee, 2003",
251
+ "Confidence": "H",
252
+ "Timing": "T1-T2",
253
+ "N": "186",
254
+ "Estimate": "-40.1",
255
+ "Lower": "-74",
256
+ "Upper": "-6.3",
257
+ "Result": "-40.1 [-74, -6.3]"
258
+ },
259
+ {
260
+ "Author(s) and Year": "Cooper, 1977",
261
+ "Confidence": "H",
262
+ "Timing": "T3",
263
+ "N": "1137",
264
+ "Estimate": "-46",
265
+ "Lower": "-88.5",
266
+ "Upper": "-3.5",
267
+ "Result": "-46 [-88.5, -3.5]"
268
+ },
269
+ {
270
+ "Author(s) and Year": "Mccarthy, 1998",
271
+ "Confidence": "H",
272
+ "Timing": "T2",
273
+ "N": "1337",
274
+ "Estimate": "22.2",
275
+ "Lower": "-18.2",
276
+ "Upper": "62.6",
277
+ "Result": "22.2 [-18.2, 62.6]"
278
+ },
279
+ {
280
+ "Author(s) and Year": "Williams, 1976",
281
+ "Confidence": "H",
282
+ "Timing": "T1",
283
+ "N": "889",
284
+ "Estimate": "-14.8",
285
+ "Lower": "-55",
286
+ "Upper": "25.4",
287
+ "Result": "-14.8 [-55, 25.4]"
288
+ },
289
+ {
290
+ "Author(s) and Year": "Sawyer, 1973",
291
+ "Confidence": "H",
292
+ "Timing": "T1",
293
+ "N": "107",
294
+ "Estimate": "-57.6",
295
+ "Lower": "-104.1",
296
+ "Upper": "-11.1",
297
+ "Result": "-57.6 [-104.1, -11.1]"
298
+ },
299
+ {
300
+ "Author(s) and Year": "Miller, 2003",
301
+ "Confidence": "H",
302
+ "Timing": "T3",
303
+ "N": "2402",
304
+ "Estimate": "-7.3",
305
+ "Lower": "-145.9",
306
+ "Upper": "131.3",
307
+ "Result": "-7.3 [-145.9, 131.3]"
308
+ },
309
+ {
310
+ "Author(s) and Year": "Dixon, 1981",
311
+ "Confidence": "M",
312
+ "Timing": "T1-T2",
313
+ "N": "2242",
314
+ "Estimate": "-60.6",
315
+ "Lower": "-156.5",
316
+ "Upper": "35.3",
317
+ "Result": "-60.6 [-156.5, 35.3]"
318
+ },
319
+ {
320
+ "Author(s) and Year": "Thompson, 1988",
321
+ "Confidence": "M",
322
+ "Timing": "T2-T3",
323
+ "N": "2166",
324
+ "Estimate": "-31.1",
325
+ "Lower": "-129",
326
+ "Upper": "66.9",
327
+ "Result": "-31.1 [-129, 66.9]"
328
+ },
329
+ {
330
+ "Author(s) and Year": "Valenzuela, 1980",
331
+ "Confidence": "M",
332
+ "Timing": "T1",
333
+ "N": "126",
334
+ "Estimate": "6.1",
335
+ "Lower": "-16.6",
336
+ "Upper": "28.7",
337
+ "Result": "6.1 [-16.6, 28.7]"
338
+ },
339
+ {
340
+ "Author(s) and Year": "Vaughn, 1975",
341
+ "Confidence": "M",
342
+ "Timing": "T1",
343
+ "N": "402",
344
+ "Estimate": "-77",
345
+ "Lower": "-135.3",
346
+ "Upper": "-18.7",
347
+ "Result": "-77 [-135.3, -18.7]"
348
+ },
349
+ {
350
+ "Author(s) and Year": "Wilson, 1976",
351
+ "Confidence": "M",
352
+ "Timing": "T2-T3",
353
+ "N": "878",
354
+ "Estimate": "-108",
355
+ "Lower": "-188.2",
356
+ "Upper": "-27.8",
357
+ "Result": "-108 [-188.2, -27.8]"
358
+ },
359
+ {
360
+ "Author(s) and Year": "Livingston, 2013",
361
+ "Confidence": "M",
362
+ "Timing": "T2",
363
+ "N": "1082",
364
+ "Estimate": "28.6",
365
+ "Lower": "-42.5",
366
+ "Upper": "99.8",
367
+ "Result": "28.6 [-42.5, 99.8]"
368
+ },
369
+ {
370
+ "Author(s) and Year": "Sullivan, 1983",
371
+ "Confidence": "M",
372
+ "Timing": "T2-T3",
373
+ "N": "2411",
374
+ "Estimate": "-52.4",
375
+ "Lower": "-101.9",
376
+ "Upper": "-2.9",
377
+ "Result": "-52.4 [-101.9, -2.9]"
378
+ },
379
+ {
380
+ "Author(s) and Year": "Parker, 1988",
381
+ "Confidence": "M",
382
+ "Timing": "T3",
383
+ "N": "856",
384
+ "Estimate": "-39.3",
385
+ "Lower": "-110.7",
386
+ "Upper": "32.1",
387
+ "Result": "-39.3 [-110.7, 32.1]"
388
+ },
389
+ {
390
+ "Author(s) and Year": "Morgan, 1976",
391
+ "Confidence": "M",
392
+ "Timing": "T3",
393
+ "N": "1679",
394
+ "Estimate": "-47.3",
395
+ "Lower": "-155.6",
396
+ "Upper": "61",
397
+ "Result": "-47.3 [-155.6, 61]"
398
+ },
399
+ {
400
+ "Author(s) and Year": "Perez, 2007",
401
+ "Confidence": "L",
402
+ "Timing": "T2-T3",
403
+ "N": "2095",
404
+ "Estimate": "-43.5",
405
+ "Lower": "-89.5",
406
+ "Upper": "2.6",
407
+ "Result": "-43.5 [-89.5, 2.6]"
408
+ },
409
+ {
410
+ "Author(s) and Year": "Mathis, 1982",
411
+ "Confidence": "L",
412
+ "Timing": "T3",
413
+ "N": "593",
414
+ "Estimate": "-41.8",
415
+ "Lower": "-71.8",
416
+ "Upper": "-11.8",
417
+ "Result": "-41.8 [-71.8, -11.8]"
418
+ },
419
+ {
420
+ "Author(s) and Year": "Parker, 2018",
421
+ "Confidence": "L",
422
+ "Timing": "B",
423
+ "N": "1320",
424
+ "Estimate": "-45.6",
425
+ "Lower": "-106.9",
426
+ "Upper": "15.7",
427
+ "Result": "-45.6 [-106.9, 15.7]"
428
+ },
429
+ {
430
+ "Author(s) and Year": "Knox, 2020",
431
+ "Confidence": "L",
432
+ "Timing": "T1",
433
+ "N": "2080",
434
+ "Estimate": "22.9",
435
+ "Lower": "-89.5",
436
+ "Upper": "135.2",
437
+ "Result": "22.9 [-89.5, 135.2]"
438
+ },
439
+ {
440
+ "Author(s) and Year": "Manning, 2017",
441
+ "Confidence": "L",
442
+ "Timing": "T2-T3",
443
+ "N": "2463",
444
+ "Estimate": "-133.4",
445
+ "Lower": "-349.9",
446
+ "Upper": "83.1",
447
+ "Result": "-133.4 [-349.9, 83.1]"
448
+ },
449
+ {
450
+ "Author(s) and Year": "Jackson, 2018",
451
+ "Confidence": "L",
452
+ "Timing": "B",
453
+ "N": "1880",
454
+ "Estimate": "14",
455
+ "Lower": "-168.5",
456
+ "Upper": "196.5",
457
+ "Result": "14 [-168.5, 196.5]"
458
+ }
459
+ ],
460
+ "dataFileName": "valid-forest-plot-data.csv",
461
+ "dataFileSourceType": "file",
462
+ "formattedData": [
463
+ {
464
+ "Author(s) and Year": "Spears, 1983",
465
+ "Confidence": "H",
466
+ "Timing": "T3",
467
+ "N": "170",
468
+ "Estimate": "0.2",
469
+ "Lower": "-35.7",
470
+ "Upper": "36.2",
471
+ "Result": "0.2 [-35.7, 36.2]"
472
+ },
473
+ {
474
+ "Author(s) and Year": "Moran, 1998",
475
+ "Confidence": "H",
476
+ "Timing": "B",
477
+ "N": "2183",
478
+ "Estimate": "33.4",
479
+ "Lower": "-109.5",
480
+ "Upper": "176.3",
481
+ "Result": "33.4 [-109.5, 176.3]"
482
+ },
483
+ {
484
+ "Author(s) and Year": "Lee, 2003",
485
+ "Confidence": "H",
486
+ "Timing": "T1-T2",
487
+ "N": "186",
488
+ "Estimate": "-40.1",
489
+ "Lower": "-74",
490
+ "Upper": "-6.3",
491
+ "Result": "-40.1 [-74, -6.3]"
492
+ },
493
+ {
494
+ "Author(s) and Year": "Cooper, 1977",
495
+ "Confidence": "H",
496
+ "Timing": "T3",
497
+ "N": "1137",
498
+ "Estimate": "-46",
499
+ "Lower": "-88.5",
500
+ "Upper": "-3.5",
501
+ "Result": "-46 [-88.5, -3.5]"
502
+ },
503
+ {
504
+ "Author(s) and Year": "Mccarthy, 1998",
505
+ "Confidence": "H",
506
+ "Timing": "T2",
507
+ "N": "1337",
508
+ "Estimate": "22.2",
509
+ "Lower": "-18.2",
510
+ "Upper": "62.6",
511
+ "Result": "22.2 [-18.2, 62.6]"
512
+ },
513
+ {
514
+ "Author(s) and Year": "Williams, 1976",
515
+ "Confidence": "H",
516
+ "Timing": "T1",
517
+ "N": "889",
518
+ "Estimate": "-14.8",
519
+ "Lower": "-55",
520
+ "Upper": "25.4",
521
+ "Result": "-14.8 [-55, 25.4]"
522
+ },
523
+ {
524
+ "Author(s) and Year": "Sawyer, 1973",
525
+ "Confidence": "H",
526
+ "Timing": "T1",
527
+ "N": "107",
528
+ "Estimate": "-57.6",
529
+ "Lower": "-104.1",
530
+ "Upper": "-11.1",
531
+ "Result": "-57.6 [-104.1, -11.1]"
532
+ },
533
+ {
534
+ "Author(s) and Year": "Miller, 2003",
535
+ "Confidence": "H",
536
+ "Timing": "T3",
537
+ "N": "2402",
538
+ "Estimate": "-7.3",
539
+ "Lower": "-145.9",
540
+ "Upper": "131.3",
541
+ "Result": "-7.3 [-145.9, 131.3]"
542
+ },
543
+ {
544
+ "Author(s) and Year": "Dixon, 1981",
545
+ "Confidence": "M",
546
+ "Timing": "T1-T2",
547
+ "N": "2242",
548
+ "Estimate": "-60.6",
549
+ "Lower": "-156.5",
550
+ "Upper": "35.3",
551
+ "Result": "-60.6 [-156.5, 35.3]"
552
+ },
553
+ {
554
+ "Author(s) and Year": "Thompson, 1988",
555
+ "Confidence": "M",
556
+ "Timing": "T2-T3",
557
+ "N": "2166",
558
+ "Estimate": "-31.1",
559
+ "Lower": "-129",
560
+ "Upper": "66.9",
561
+ "Result": "-31.1 [-129, 66.9]"
562
+ },
563
+ {
564
+ "Author(s) and Year": "Valenzuela, 1980",
565
+ "Confidence": "M",
566
+ "Timing": "T1",
567
+ "N": "126",
568
+ "Estimate": "6.1",
569
+ "Lower": "-16.6",
570
+ "Upper": "28.7",
571
+ "Result": "6.1 [-16.6, 28.7]"
572
+ },
573
+ {
574
+ "Author(s) and Year": "Vaughn, 1975",
575
+ "Confidence": "M",
576
+ "Timing": "T1",
577
+ "N": "402",
578
+ "Estimate": "-77",
579
+ "Lower": "-135.3",
580
+ "Upper": "-18.7",
581
+ "Result": "-77 [-135.3, -18.7]"
582
+ },
583
+ {
584
+ "Author(s) and Year": "Wilson, 1976",
585
+ "Confidence": "M",
586
+ "Timing": "T2-T3",
587
+ "N": "878",
588
+ "Estimate": "-108",
589
+ "Lower": "-188.2",
590
+ "Upper": "-27.8",
591
+ "Result": "-108 [-188.2, -27.8]"
592
+ },
593
+ {
594
+ "Author(s) and Year": "Livingston, 2013",
595
+ "Confidence": "M",
596
+ "Timing": "T2",
597
+ "N": "1082",
598
+ "Estimate": "28.6",
599
+ "Lower": "-42.5",
600
+ "Upper": "99.8",
601
+ "Result": "28.6 [-42.5, 99.8]"
602
+ },
603
+ {
604
+ "Author(s) and Year": "Sullivan, 1983",
605
+ "Confidence": "M",
606
+ "Timing": "T2-T3",
607
+ "N": "2411",
608
+ "Estimate": "-52.4",
609
+ "Lower": "-101.9",
610
+ "Upper": "-2.9",
611
+ "Result": "-52.4 [-101.9, -2.9]"
612
+ },
613
+ {
614
+ "Author(s) and Year": "Parker, 1988",
615
+ "Confidence": "M",
616
+ "Timing": "T3",
617
+ "N": "856",
618
+ "Estimate": "-39.3",
619
+ "Lower": "-110.7",
620
+ "Upper": "32.1",
621
+ "Result": "-39.3 [-110.7, 32.1]"
622
+ },
623
+ {
624
+ "Author(s) and Year": "Morgan, 1976",
625
+ "Confidence": "M",
626
+ "Timing": "T3",
627
+ "N": "1679",
628
+ "Estimate": "-47.3",
629
+ "Lower": "-155.6",
630
+ "Upper": "61",
631
+ "Result": "-47.3 [-155.6, 61]"
632
+ },
633
+ {
634
+ "Author(s) and Year": "Perez, 2007",
635
+ "Confidence": "L",
636
+ "Timing": "T2-T3",
637
+ "N": "2095",
638
+ "Estimate": "-43.5",
639
+ "Lower": "-89.5",
640
+ "Upper": "2.6",
641
+ "Result": "-43.5 [-89.5, 2.6]"
642
+ },
643
+ {
644
+ "Author(s) and Year": "Mathis, 1982",
645
+ "Confidence": "L",
646
+ "Timing": "T3",
647
+ "N": "593",
648
+ "Estimate": "-41.8",
649
+ "Lower": "-71.8",
650
+ "Upper": "-11.8",
651
+ "Result": "-41.8 [-71.8, -11.8]"
652
+ },
653
+ {
654
+ "Author(s) and Year": "Parker, 2018",
655
+ "Confidence": "L",
656
+ "Timing": "B",
657
+ "N": "1320",
658
+ "Estimate": "-45.6",
659
+ "Lower": "-106.9",
660
+ "Upper": "15.7",
661
+ "Result": "-45.6 [-106.9, 15.7]"
662
+ },
663
+ {
664
+ "Author(s) and Year": "Knox, 2020",
665
+ "Confidence": "L",
666
+ "Timing": "T1",
667
+ "N": "2080",
668
+ "Estimate": "22.9",
669
+ "Lower": "-89.5",
670
+ "Upper": "135.2",
671
+ "Result": "22.9 [-89.5, 135.2]"
672
+ },
673
+ {
674
+ "Author(s) and Year": "Manning, 2017",
675
+ "Confidence": "L",
676
+ "Timing": "T2-T3",
677
+ "N": "2463",
678
+ "Estimate": "-133.4",
679
+ "Lower": "-349.9",
680
+ "Upper": "83.1",
681
+ "Result": "-133.4 [-349.9, 83.1]"
682
+ },
683
+ {
684
+ "Author(s) and Year": "Jackson, 2018",
685
+ "Confidence": "L",
686
+ "Timing": "B",
687
+ "N": "1880",
688
+ "Estimate": "14",
689
+ "Lower": "-168.5",
690
+ "Upper": "196.5",
691
+ "Result": "14 [-168.5, 196.5]"
692
+ }
693
+ ],
694
+ "dataDescription": {
695
+ "horizontal": false,
696
+ "series": false
697
+ },
698
+ "validated": 4.23,
699
+ "dynamicMarginTop": 0
700
+ }