@@ -8,3 +8,29 @@ export const boxData = [
8
8
{ x : 'West Europe' , low : 1 , q1 : 7 , median : 10 , q3 : 17 , high : 22 } ,
9
9
{ x : 'West Africa' , low : 1 , q1 : 6 , median : 8 , q3 : 13 , high : 16 } ,
10
10
] ;
11
+
12
+ export const groupBoxData = [
13
+ { Species : 'I. setosa' , type : 'SepalLength' , value : 5.1 , _bin : [ 4.3 , 4.8 , 5 , 5.2 , 5.8 ] } ,
14
+ { Species : 'I. setosa' , type : 'SepalWidth' , value : 3.5 , _bin : [ 2.3 , 3.2 , 3.4 , 3.7 , 4.4 ] } ,
15
+ { Species : 'I. setosa' , type : 'PetalLength' , value : 1.4 , _bin : [ 1 , 1.4 , 1.5 , 1.6 , 1.9 ] } ,
16
+ { Species : 'I. setosa' , type : 'PetalWidth' , value : 0.2 , _bin : [ 0.1 , 0.2 , 0.2 , 0.3 , 0.6 ] } ,
17
+ { Species : 'I. versicolor' , type : 'SepalLength' , value : 7 , _bin : [ 4.9 , 5.6 , 5.9 , 6.3 , 7 ] } ,
18
+ { Species : 'I. versicolor' , type : 'SepalWidth' , value : 3.2 , _bin : [ 2 , 2.5 , 2.8 , 3 , 3.4 ] } ,
19
+ { Species : 'I. versicolor' , type : 'PetalLength' , value : 4.7 , _bin : [ 3 , 4 , 4.35 , 4.6 , 5.1 ] } ,
20
+ { Species : 'I. versicolor' , type : 'PetalWidth' , value : 1.4 , _bin : [ 1 , 1.2 , 1.3 , 1.5 , 1.8 ] } ,
21
+ { Species : 'I. virginica' , type : 'SepalLength' , value : 6.3 , _bin : [ 4.9 , 6.2 , 6.5 , 6.9 , 7.9 ] } ,
22
+ { Species : 'I. virginica' , type : 'SepalWidth' , value : 3.3 , _bin : [ 2.2 , 2.8 , 3 , 3.2 , 3.8 ] } ,
23
+ { Species : 'I. virginica' , type : 'PetalLength' , value : 6 , _bin : [ 4.5 , 5.1 , 5.55 , 5.9 , 6.9 ] } ,
24
+ { Species : 'I. virginica' , type : 'PetalWidth' , value : 2.5 , _bin : [ 1.4 , 1.8 , 2 , 2.3 , 2.5 ] } ,
25
+ ] ;
26
+
27
+ export const outliersData = [
28
+ { x : '职业 A' , low : 20000 , q1 : 26000 , median : 27000 , q3 : 32000 , high : 38000 , outliers : [ 50000 , 52000 ] } ,
29
+ { x : '职业 B' , low : 40000 , q1 : 49000 , median : 62000 , q3 : 73000 , high : 88000 , outliers : [ 32000 , 29000 , 106000 ] } ,
30
+ { x : '职业 C' , low : 52000 , q1 : 59000 , median : 65000 , q3 : 74000 , high : 83000 , outliers : [ 91000 ] } ,
31
+ { x : '职业 D' , low : 58000 , q1 : 96000 , median : 130000 , q3 : 170000 , high : 200000 , outliers : [ 42000 , 210000 , 215000 ] } ,
32
+ { x : '职业 E' , low : 24000 , q1 : 28000 , median : 32000 , q3 : 38000 , high : 42000 , outliers : [ 48000 ] } ,
33
+ { x : '职业 F' , low : 47000 , q1 : 56000 , median : 69000 , q3 : 85000 , high : 100000 , outliers : [ 110000 , 115000 , 32000 ] } ,
34
+ { x : '职业 G' , low : 64000 , q1 : 74000 , median : 83000 , q3 : 93000 , high : 100000 , outliers : [ 110000 ] } ,
35
+ { x : '职业 H' , low : 67000 , q1 : 72000 , median : 84000 , q3 : 95000 , high : 110000 , outliers : [ 57000 , 54000 ] } ,
36
+ ] ;
0 commit comments