Public
Edited
Nov 30, 2023
Insert cell
Insert cell
map = Plot.plot({
width,
projection: "equal-earth",
marks: [
// Plot.graticule(),
Plot.geo(land, { fill: "#ececec" }),
Plot.dot(data_pv, {
x: "x",
y: "y",
fill: "blue",
opacity: 0.05,
r: 1
}),
Plot.dot(data_pf, {
x: "x",
y: "y",
fill: "red",
opacity: 0.05,
r: 1
}),
Plot.sphere()
]
})
Insert cell
data_pf = FileAttachment("malaria-p-falciparum.csv").csv({ typed: true })
Insert cell
data_pv = FileAttachment("malaria-p-vivax.csv").csv({ typed: true })
Insert cell
import { land } from "647cbe5c1ac9e332"
Insert cell
import { world } from "@jashkenas/latitude-longitude-world-map-plotter"
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