データのバインディング
Data binding on D3
d3.select("body").selectAll("p")
.data(dataset)
.enter()
.append("p")
.text("新しいテキスト");