Public
Edited
Mar 20, 2023
Insert cell
data = require('vega-datasets@1')

Insert cell
seattle_temps = data['seattle-weather.csv']()

Insert cell
printTable(seattle_temps.slice(0,5))
Insert cell
vl.markPoint(color: "red")
.data(seattle_temps)
.encode(
vl.x().field('date', 'temporal'),
vl.y().field('temp_max', 'quantitative')
)
.render()
Insert cell
import {vl} from "@vega/vega-lite-api-v5"

Insert cell
import {printTable} from '@uwdata/data-utilities'
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