vl.y().fieldQ('total_cases').title('Total de Casos'),
vl.color().fieldN('location').title('País')
)
.width(1000)
.height(1000)
.render()
vl.markCircle()
.data(data)
.encode(
vl.x().fieldQ('total_cases'),
vl.y().fieldQ('total_deaths'),
vl.size().fieldQ('population'),
vl.color().fieldN('location')
)
.width(1000)
.height(800)
.render()
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.