-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathdata.js
44 lines (44 loc) · 3.24 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
export default [
{"country": "United States", "year": 2010, "gender": "male", "count": 153295220},
{"country": "United States", "year": 2010, "gender": "female", "count": 156588400},
{"country": "United States", "year": 2011, "gender": "male", "count": 154591960},
{"country": "United States", "year": 2011, "gender": "female", "count": 157800200},
{"country": "United States", "year": 2012, "gender": "male", "count": 155851840},
{"country": "United States", "year": 2012, "gender": "female", "count": 158944800},
{"country": "China", "year": 2010, "gender": "male", "count": 690256342},
{"country": "China", "year": 2010, "gender": "female", "count": 650712406},
{"country": "China", "year": 2011, "gender": "male", "count": 694106441},
{"country": "China", "year": 2011, "gender": "female", "count": 654068030},
{"country": "China", "year": 2012, "gender": "male", "count": 697964288},
{"country": "China", "year": 2012, "gender": "female", "count": 657422649},
/*{"country": "China", "year": 2013, "gender": "male", "count": 701775013},
{"country": "China", "year": 2013, "gender": "female", "count": 660739286},
{"country": "China", "year": 2014, "gender": "male", "count": 705465988},
{"country": "China", "year": 2014, "gender": "female", "count": 663969676},
{"country": "China", "year": 2015, "gender": "male", "count": 708977128},
{"country": "China", "year": 2015, "gender": "female", "count": 667071829},
{"country": "China", "year": 2016, "gender": "male", "count": 712290052},
{"country": "China", "year": 2016, "gender": "female", "count": 670033273},
{"country": "China", "year": 2017, "gender": "male", "count": 715392990},
{"country": "China", "year": 2017, "gender": "female", "count": 672839688},
{"country": "China", "year": 2018, "gender": "male", "count": 718240829},
{"country": "China", "year": 2018, "gender": "female", "count": 675445659},*/
{"country": "India", "year": 2010, "gender": "male", "count": 638354751},
{"country": "India", "year": 2010, "gender": "female", "count": 592629727},
{"country": "India", "year": 2011, "gender": "male", "count": 646873890},
{"country": "India", "year": 2011, "gender": "female", "count": 600572093},
{"country": "India", "year": 2012, "gender": "male", "count": 655193693},
{"country": "India", "year": 2012, "gender": "female", "count": 608395922},
{"country": "France", "year": 2010, "gender": "male", "count": 30675773},
{"country": "France", "year": 2010, "gender": "female", "count": 32285363},
{"country": "France", "year": 2011, "gender": "male", "count": 30815839},
{"country": "France", "year": 2011, "gender": "female", "count": 32452566},
{"country": "France", "year": 2012, "gender": "male", "count": 30948916},
{"country": "France", "year": 2012, "gender": "female", "count": 32612882},
{"country": "Australia", "year": 2010, "gender": "male", "count": 11124254},
{"country": "Australia", "year": 2010, "gender": "female", "count": 11218144},
{"country": "Australia", "year": 2011, "gender": "male", "count": 11260747},
{"country": "Australia", "year": 2011, "gender": "female", "count": 11359807},
{"country": "Australia", "year": 2012, "gender": "male", "count": 11280804},
{"country": "Australia", "year": 2012, "gender": "female", "count": 11402769}
]