Public
Edited
Oct 28, 2022
Insert cell
Insert cell
Insert cell
{
const div = d3.create("div")
div.append("p").text("新しいパラグラフ! その1");
div.append("p").text("新しいパラグラフ! その2");
div.append("p").text("新しいパラグラフ! その3");
div.append("p").text("新しいパラグラフ! その4");
div.append("p").text("新しいパラグラフ! その5");
return div.node()
}
Insert cell
Insert cell
{
const div = d3.create("div")
div.append("section").append("p").text("新しいパラグラフ! その1")
div.append("section").append("p").text("新しいパラグラフ! その2")
div.append("section").append("p").text("新しいパラグラフ! その3")
div.append("section").append("p").text("新しいパラグラフ! その4")
div.append("section").append("p").text("新しいパラグラフ! その5")
return div.node()
}

Insert cell
Insert cell
{
const div = d3.create("div")
div.append("section").append("p").attr("class", "first").text("新しいパラグラフ! その1")
div.append("section").append("p").text("新しいパラグラフ! その2")
div.append("section").append("p").text("新しいパラグラフ! その3")
div.append("section").append("p").text("新しいパラグラフ! その4")
div.append("section").append("p").attr("class", "last").text("新しいパラグラフ! その5")
return div.node()
}
Insert cell
Insert cell
{
const div = d3.create("div")
div.append("section").append("p").attr("class", "first").text("新しいパラグラフ! その1")
div.append("section").append("p").text("新しいパラグラフ! その2")
div.append("section").append("p").text("新しいパラグラフ! その3")
div.append("section").append("p").text("新しいパラグラフ! その4")
div.append("section").append("p").attr("class", "last").text("新しいパラグラフ! その5")
return div.node()
}
Insert cell
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more