block by aaizemberg 00dc5c649fe9f8a5d6a270f78d534593

d3plus treemap provincias y departamentos

Full Screen

index.html

<!doctype html>
<meta charset="utf-8">

<!-- d3plus v1.9.8 -->
<script src="d3plus.full.min.js"></script>

<div id="viz"></div>

<script>
  var url = 'https://raw.githubusercontent.com/aaizemberg/vis/gh-pages/01/data/deptos.tsv';
  var visualization = d3plus.viz()
    .format('es_ES')
    .container("#viz")  
    .data( url )  
    .type("tree_map")   
    .id(["provincia","departamento"])         
    .size("poblacion")      
    .draw()             
</script>