Public
Edited
Oct 20, 2022
Insert cell
Insert cell
Insert cell
{
const p = document.createElement("p");
p.textContent = "あたらしいパラグラフ";
return p;
}
Insert cell
p = d3
.create("p")
.text("あたらしいパラグラフ")
.style("background-color", "yellow")
.node()
Insert cell
Insert cell
{
const div = d3.create("div").attr("class", "parent");
div.append("p").text("あたらしいパラグラフ");
return div.node();
}
Insert cell
Insert cell
{
const div = d3.create("div").attr("class", "parent");
div.append("p").text("ひとつめ");
div.append("p").text("ふたつめ");
return div.node();
}
Insert cell
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