-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPARALLELCITY.html
More file actions
126 lines (119 loc) · 2.47 KB
/
Copy pathPARALLELCITY.html
File metadata and controls
126 lines (119 loc) · 2.47 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype HTML>
<meta charset = 'utf-8'>
<html>
<head>
<link rel='stylesheet' href='d3.parcoords.css'>
<script src='d3.min.js' type='text/javascript'></script>
<script src='d3.parcoords.js' type='text/javascript'></script>
<style>
.rChart {
display: block;
margin-left: auto;
margin-right: auto;
width: 1080px;
height: 400px;
}
</style>
</head>
<body>
<div id='chart1ca82b824a11' class='rChart parcoords'></div>
<script id="brushing">
var params = {
"dom": "chart1ca82b824a11",
"width": 1080,
"height": 400,
"padding": {
"top": 25,
"left": 5,
"bottom": 10,
"right": 0
},
"data": [
{
"Group": 1,
"Rape": 585,
"KidnapAbduct": 1787,
"DowryDeath": 100,
"AssaultModesty": 639,
"InsultModesty": 181,
"CrueltyHusband": 1870,
"Importation": 0,
"ImmoralTraffic": 19,
"DowryProhibit": 13,
"IndecentRep": 0
},
{
"Group": 2,
"Rape": 32.231,
"KidnapAbduct": 34.769,
"DowryDeath": 5.3462,
"AssaultModesty": 67.846,
"InsultModesty": 20.654,
"CrueltyHusband": 104,
"Importation": 0,
"ImmoralTraffic": 11.192,
"DowryProhibit": 8.2692,
"IndecentRep": 0
},
{
"Group": 3,
"Rape": 79.5,
"KidnapAbduct": 111,
"DowryDeath": 20,
"AssaultModesty": 134.5,
"InsultModesty": 141.5,
"CrueltyHusband": 1216.2,
"Importation": 0,
"ImmoralTraffic": 43.75,
"DowryProhibit": 8.25,
"IndecentRep": 2.5
},
{
"Group": 4,
"Rape": 47.053,
"KidnapAbduct": 86.579,
"DowryDeath": 14.895,
"AssaultModesty": 77.579,
"InsultModesty": 30.263,
"CrueltyHusband": 293.47,
"Importation": 0,
"ImmoralTraffic": 17.158,
"DowryProhibit": 5.6316,
"IndecentRep": 0.52632
},
{
"Group": 5,
"Rape": 130,
"KidnapAbduct": 261.33,
"DowryDeath": 27,
"AssaultModesty": 473.67,
"InsultModesty": 221,
"CrueltyHusband": 592.33,
"Importation": 3,
"ImmoralTraffic": 119.67,
"DowryProhibit": 211,
"IndecentRep": 0
}
],
"colorby": "Rape",
"range": [ 32.231, 585 ],
"colors": [ "red", "green" ],
"id": "chart1ca82b824a11"
}
var getColors = d3.scale.linear()
.domain(params.range)
.range(params.colors)
.interpolate(d3.interpolateLab);
var color = function(d) { return getColors(d[params.colorby]); };
d3.parcoords()("#" + params.dom)
.margin(params.padding)
.data(params.data)
.color(color)
.alpha(0.4)
.render()
.shadows()
.brushable() // enable brushing
.reorderable(); // enable moving axes
</script>
</body>
</html>