-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholympic-2.html
82 lines (65 loc) · 1.42 KB
/
olympic-2.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
---
layout: default
title: olympic
---
<svg width="720" height="120">
<g id="dataCircles"></g>
</svg>
<script>
//d3.text("data/textData.txt", function(error, data) {
//if (error) {
//console.log(error.status, error.statusText);
//}
//console.log(error, data);
//});
d3.csv("data/Olympic.csv", function(error, data) {
if (error) {
console.log(error.status, error.statusText);
}
else{
//not needed using json
console.log(data);
data.forEach(function(dataPoint){
dataPoint.x = parseFloat(dataPoint.x);
dataPoint.size = parseFloat(dataPoint.size);
});
// //not needed using json
// draw(data);
console.log(data);
}
});
// function draw(data) {
// var circle = d3.select("g#dataCircles").selectAll("rect")
// .data(data,function(d){
// return d.color;
// });
//
// circle.enter().append("rect")
// .attr("y", 60)
// .style("fill", function(d){
// return d.color;
// })
// .attr("width", 0)
// .attr("height", 0);
//
//
//
// circle.transition().duration(1000)
// .attr("width", function(d){
// return d.size;
// })
// .attr("height", function(d){
// return d.size;
// })
// .style("fill", function(d){
// return d.color;
// })
// .attr("x", function(d){
// return d.x;
// });
//
// circle.exit().transition().duration(1000)
// .attr("r", 0).remove;
//
// }
</script>