Public
Edited
Apr 19, 2024
Fork of SQL + Chart
Insert cell
Insert cell
New_query_2024_04_19.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
import {Plot} from "@mkfreeman/plot-tooltip";
Insert cell
Plot.plot({
caption: "Evolution of Kaiser H0524",
y: { padding: 0.1 },
marginLeft: 80,
color: {
legend: true,
domain: Plot.valueof(new_query_2024_04_19, "county"),
scheme: "Category10",
type: "categorical"
},
tooltip: {
fill: "green"
},
marks: [
Plot.barX(new_query_2024_04_19, {
y: "date",
x: "enroll",
fill: "county",
title: (d) => `${d.county}, ${d.enroll}`
})
]
})
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