Public
Edited
Oct 17, 2023
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Voici du texte en *italic* ou en __gras__ avec un [lien](https://observablehq.com/).
Insert cell
Insert cell
<div>ceci est du texte surligné en <span style="background-color:tomato; color:white">rouge</span>.</div>
Insert cell
<canvas id="myCanvas" width="100" height ="100" style="border:1px
solid #000000; background-color: steelblue;"></canvas>
Insert cell
<svg viewBox="0 0 1000 100" xmlns="http://www.w3.org/2000/svg">
<rect x="0" y="0" width="100px" height="100px" fill="#F2CD3B" stroke="#06000C" />
</svg>
Insert cell
Insert cell
tex`_{n+1} = 2^{n+1}`
Insert cell
c = \pm\sqrt{a^2 + b^2}
Insert cell
Insert cell
a = 10
Insert cell
b = 6
Insert cell
c = a + b
Insert cell
x = {
let val1 = 8;
let val2 = 7;
return val1 * val2;
}
Insert cell
function sum(a, b) {
return a + b;
}
Insert cell
sum(10, 30)
Insert cell
multi = (a, b) => a * b
Insert cell
multi(3, 8)
Insert cell
Insert cell
Insert cell
e + d
Insert cell
d = 5
Insert cell
e = 5
Insert cell
Insert cell
viewof color = Inputs.color({ label: "Couleur", value: "#4ab58c" })
Insert cell
Insert cell
viewof position = Inputs.range([50, 950], {
label: "Position",
step: 1,
value: 50
})
Insert cell
<svg viewBox="0 0 1000 100" xmlns="http://www.w3.org/2000/svg">
<circle cx=${position} cy="50" r=${radius} fill="${color}"/>
</svg>
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
data = FileAttachment("stats.csv").csv({ typed: true })
Insert cell
Inputs.table(data)
Insert cell
Insert cell
Insert cell
data2
Insert cell
Insert cell
cities = d3
.csv(
"https://raw.githubusercontent.com/neocarto/resources/master/datasets/simplemaps_worldcities_basicv1.73/worldcities.csv",
d3.autoType
)
.then((r) => r.filter((d) => +d.population > 1000000))
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
world = FileAttachment("countries.json").json()
Insert cell
Insert cell
Plot.plot({ projection: "equal-earth", marks: [Plot.geo(world)] })
Insert cell
Insert cell
Insert cell
Insert cell
geo = require("geotoolbox")
Insert cell
Insert cell
Insert cell
africa = geo.union(geo.filter(world, (d) => d.region == "Africa"))
Insert cell
buffer = geo.buffer(africa, { dist: k })
Insert cell
countries_clip = geo.clip(world, { clip: buffer })
Insert cell
viewof k = Inputs.range([100, 5000], { label: "Distance", step: 100 })
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
bertin = require("bertin")
Insert cell
Insert cell
Insert cell
Insert cell
bertin.draw({
layers: [
{
geojson: world,
fill: "yellow",
stroke: "red"
}
]
})
Insert cell
Insert cell
bertin.draw({
layers: [
{
type: "bubble", // Essayer type = "simple", type = "square", type = "spikes"
geojson: world,
values: "pop", // <- données quantitatives absolues
fill: "red",
leg_x: 75,
leg_y: 250,
leg_round: -2
},
{
geojson: world,
fill: "#CCC"
}
]
})
Insert cell
Insert cell
Insert cell
bertin.draw({
params: { projection: "Eckert3" }, // Paramètres généraux (marges, projection, etc.)
layers: [
{ type: "header", text: "La population mondiale" }, // Titre
{ type: "footer", text: "Fait avec bertin.js", anchor: "middle" }, // Source
// COUCHE 1 (cercles)
{
type: "bubble",
geojson: world, // géometrie
k: radiusmax, // Rayon du plus gros cercles
values: "pop", // variable
fill: "#b566ac", // couleur des cercles
stroke: "white", // couleur de contour des cercles
strokeWidth: 0.5, // épaisseur
tooltip: ["$name", "$pop"], // Infobulle
leg_x: 100, // position de la légende (x)
leg_y: 250, // position de la légende (y)
leg_title: "Population des\npays en 2000", // Titre de la légende
leg_round: -3 // arrondi
},
// COUCHE 1 (pays)
{
geojson: world, // géométrie
fill: "white", // couleur de fond
stroke: "none", // cauleur de contour (aucun)
fillOpacity: 0.5 // Opacité
},
{ type: "graticule" }, // Lignes de latitude et longitude
{ type: "outline" } // coutour de la Terre dans la projection
]
})
Insert cell
Insert cell
bertin.draw({
params: { projection: "Eckert3" }, // Paramètres généraux (marges, projection, etc.)
layers: [
{ type: "header", text: "La population mondiale" }, // Titre
{ type: "footer", text: "Fait avec bertin.js", anchor: "middle" }, // Source
// COUCHE 1 (pays)
{
geojson: world, // géométrie
fill: {
// choropleth
type: "choro",
values: "gdppc",
method: "q6", // essayer "jenks", "quantile", "geometric", "equal"
colors: "Spectral", // Essayer "PuBuGn"
leg_x: 100,
leg_y: 200,
leg_title: "GDP per capita",
leg_roubd: 0
},
tooltip: ["$name", "$gdppc"] // Infobulle
},
{ type: "graticule" }, // Lignes de latitude et longitude
{ type: "outline" } // coutour de la Terre dans la projection
]
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import {ForceGraph} from "@d3/force-directed-graph-component"
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more