Published
Edited
Oct 3, 2022
Insert cell
# Making visualisations with the Grammar of Graphics
Insert cell
countries = FileAttachment("bubble-chart-data.csv").csv({typed: true})
Insert cell
viz = Plot.plot({
marks: [
Plot.dot(countries, {
x: "income",
y: "lifeexp",
fill: "continent",
r: "population",
stroke: "black",
strokeWidth: 1
})
],
x: {type: "log"}
})
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