-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathage_data_bins.ts
More file actions
86 lines (86 loc) · 1.03 KB
/
age_data_bins.ts
File metadata and controls
86 lines (86 loc) · 1.03 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
export const hist_data = [
{
"age_bin":"0-5",
"count":1174
},
{
"age_bin":"5-10",
"count":1494
},
{
"age_bin":"10-15",
"count":2772
},
{
"age_bin":"15-20",
"count":4816
},
{
"age_bin":"20-25",
"count":7279
},
{
"age_bin":"25-30",
"count":9885
},
{
"age_bin":"30-35",
"count":12078
},
{
"age_bin":"35-40",
"count":13096
},
{
"age_bin":"40-45",
"count":12928
},
{
"age_bin":"45-50",
"count":11181
},
{
"age_bin":"50-55",
"count":8840
},
{
"age_bin":"55-60",
"count":6351
},
{
"age_bin":"60-65",
"count":3916
},
{
"age_bin":"65-70",
"count":2255
},
{
"age_bin":"70-75",
"count":1123
},
{
"age_bin":"75-80",
"count":510
},
{
"age_bin":"80-85",
"count":199
},
{
"age_bin":"85-90",
"count":70
},
{
"age_bin":"90-95",
"count":25
},
{
"age_bin":"95-100",
"count":7
},
{
"age_bin":"100-105",
"count":1
}
];