-
Notifications
You must be signed in to change notification settings - Fork 1
/
verbalormaterial.html
162 lines (124 loc) · 3.51 KB
/
verbalormaterial.html
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.dot {
stroke: #000;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 20, right: 20, bottom: 30, left: 40},
width = 960 - margin.left - margin.right,
height = 2000 - margin.top - margin.bottom;
var x = d3.scale.linear()
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var color = d3.scale.category10();
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var allData=[];
var dataByCountry=[];
var countByCountry=[];
var dataByMonth=[];
var countByMonth=[];
//initialize data from clean csv
d3.csv("south-china-sea.csv", function(data) {
data.forEach(function(d) {
d.sourcecode = +d.sourcecode;
d.sourcename = d.sourcename;
d.targetcode = +d.targetcode;
d.targetname = d.targetname;
d.date = +d.date;
d.cooperation = +d.cooperation;
d.verbal = +d.verbal;
d.count = +d.count;
d.eventcode = +d.eventcode;
});
allData=data;
dataByCountry = d3.nest()
.key(function(d) { return d.sourcename; })
.entries(this.allData);
dataByMonth = d3.nest()
.key(function(d) { return d.date; })
.entries(this.allData);
countByCountry = d3.nest()
.key(function(d) { return d.sourcename; })
.rollup(function(v) { return v.length; })
.entries(allData);
console.log(JSON.stringify(countByCountry));
countByMonth = d3.nest()
.key(function(d) { return d.date; })
.rollup(function(v) { return v.length; })
.entries(allData);
console.log(JSON.stringify(countByMonth));
//now plot
data=allData;
x.domain(d3.extent(data, function(d) { return d.date; })).nice();
y.domain(d3.extent(data, function(d) { return d.count; })).nice();
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("class", "label")
.attr("x", width)
.attr("y", -6)
.style("text-anchor", "end")
.text("Date");
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("class", "label")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Dyadic count")
svg.selectAll(".dot")
.data(data)
.enter().append("circle")
.attr("class", "dot")
.attr("r", 3.5)
.attr("cx", function(d) { return x(d.date); })
.attr("cy", function(d) { return y(d.count); })
.style("fill", function(d) { return color(d.sourcename); });
var legend = svg.selectAll(".legend")
.data(color.domain())
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d, i) { return "translate(0," + i *20 +")"; });
//legend for verbal vs material interaction
legend.append("rect")
.attr("x", width - 18)
.attr("width", 18)
.attr("height", 18)
.style("fill", color);
legend.append("text")
.attr("x", width - 24)
.attr("y", 9)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function(d) { return d; });
})
</script>