UNPKG
r-d3
Version:
latest (0.6.0)
0.6.0
0.5.0
0.4.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.0
D3 data, React rendering.
github.com/ericgio/r-d3
ericgio/r-d3
r-d3
/
examples
/
data
/
population.js
13 lines
(12 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
default
[ [
'<5'
,
2704659
], [
'5-13'
,
4499890
], [
'14-17'
,
2159981
], [
'18-24'
,
3853788
], [
'25-44'
,
14106543
], [
'45-64'
,
8819342
], [
'≥65'
,
612463
], ].
map
(
(
d
) =>
({
age
: d[
0
],
population
: d[
1
], }));