User:Themsen/Protclass7
words.html
<code=html> <meta charset="utf-8" /> <script src="d3.min.js"></script> <body>
</body> <script>
d3.json("words2.json", function (data) { console.log("loaded", data); d3.select("#content") .selectAll("span") .data(data) .enter() .append("span") .text(function(d) { return d.word + " " }) .style("font-size", function(d) { return d.count })
})
</script>