-
Notifications
You must be signed in to change notification settings - Fork 1
/
L4.02.html
executable file
·64 lines (53 loc) · 2.02 KB
/
L4.02.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Data CSV/TSV - 4 | CAS Dataviz, Daniel Schoeneck</title>
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<div style="width:650px; margin:200px auto;">
<svg width="650" height="420" style="stroke-width: 0; background-color: white;">
</svg>
</div>
<script>
// Leeres Datenarray
var datensatz = [];
// SVG Objekt holen
var svg = d3.select("svg")
.append("g");
// Daten einlesen und als Vereinfachung und Anlehnung an Beispiel aus L3 an Array übergeben
d3.csv("data/datensatz.csv", function (error, data) {
data.forEach(function (d) {
datensatz.push(parseInt(+d.Rate) + 1);
// +1 verhindert Nullwerte in der Grafik
});
// die Sequenz selectAll(), .data(), enter(), append()
// plus Attribute zuweisen
datensatz.forEach(function (d) {
svg.selectAll(".bar")
.data(datensatz)
.enter().append("rect")
.attr("class", "bar")
.attr("height", function (d, i) {
return d;
})
// Rückgabe der Werte für die jeweilige Selektion function(d,i) { return d };
.attr("y", function (d, i) {
return 420 - d;
})
// Rückgabe der Werte für die jeweilige Selektion function(d,i) { return i };
.attr("x", function (d, i) {
return i * 25;
})
.attr("width", 24)
// Farbwerte der Balken als Funktion von d
.attr("fill", function (d, i) {
var rgbColor = "rgb(" + Math.round(d / 411 * 118) + ", 0, " + Math.round(d / 411 * 255) + ")";
return rgbColor;
});
});
});
</script>
</body>
</html>