-
Notifications
You must be signed in to change notification settings - Fork 0
/
arbol.html
59 lines (58 loc) · 1.72 KB
/
arbol.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Arbol de ENIGH</title>
<script src="d3/d3.v3.js" type="text/javascript"></script>
<style type="text/css">
body {
background-color: #eeeeee;
}
.contenedor {
width: 600px;
height: 200px;
/*background-color: #391013;*/
}
</style>
</head>
<body>
<script type="text/javascript">
var rens = null;
d3.csv("data/enigh-2010-secc7.1.csv")
.row(function(d) {
return { nivel: +d.Nivel, rubro: d.Rubro, gasto: +d.GASTO_total };
})
.get(function(error, rows) {
if(error==null) {
//sumamos para sacar el total, no muy practico
var suma = 0;
for(var i=0; i<rows.length; i++) {
if(rows[i].nivel==1) {
suma += rows[i].gasto;
}
}
console.log(suma);
//creamos el div dinamico
var cont = d3.select("body")
.append("div")
.classed("contenedor", true);
for(var i=0; i<rows.length; i++) {
if(rows[i].nivel==1) {
console.log(rows[i].gasto);
cont.append("div")
.style("width", function(d) {return rows[i].gasto/suma*100 +"%"; })
.style("height", "100%")
.style("float", "left")
.style("background-color", "rgb(19, " +(i*26) +", 39)");
}
}
//referencia externa, por si las dudas
rens = rows;
}
else {
console.log(error);
}
});
</script>
</body>
</html>