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