Public
Edited
Mar 31
1 star
Insert cell
Insert cell
vl
.markLine()
.encode(
vl.x()
.fieldQ("IMDB Rating")
.bin(true),
vl.y().mean(vl.repeat("layer")),
vl.color().datum(vl.repeat("layer"))
)
// for these type of charts is important that you place the *.repeat* and *.data* below the *encode*
.repeat({ layer: ["US Gross", "Worldwide Gross"] })
.data(data)
.render()
Insert cell
data
Insert cell
Insert cell
Insert cell
Insert cell
viewof stakedArea = vl
.markArea()
.transform(vl.fold(["US Gross", "Worldwide Gross"]))
.encode(
vl.x()
.fieldQ("IMDB Rating")
.bin(true),
vl.y().mean("value"),
vl.color().fieldN("key")
)
.data(data)
.render()
Insert cell
Insert cell
vegaDataViewer(stakedArea, {
dataset: "data_0",
tableOptions: { title: "Folded movie data", pageSize: 10 }
})
Insert cell
Insert cell
vegaDataViewer(stakedArea, {
dataset: "source_0",
tableOptions: { title: "Original movie data", pageSize: 10 }
})
Insert cell
Insert cell
({
$schema: "https://vega.github.io/schema/vega-lite/v5.json",
data: {
url: "data/movies.json"
},
repeat: {
layer: ["US Gross", "Worldwide Gross"]
},
spec: {
mark: "line",
encoding: {
x: {
bin: true,
field: "IMDB Rating",
type: "quantitative"
},
y: {
aggregate: "mean",
field: { repeat: "layer" },
type: "quantitative",
title: "Mean of US and Worldwide Gross"
},
color: {
datum: { repeat: "layer" },
type: "nominal"
}
}
}
})
Insert cell
data = (await require("vega-datasets"))["movies.json"]()
Insert cell
import { vl } from "@vega/vega-lite-api-v5"
Insert cell
import {vegaDataViewer} from "@john-guerra/vega-data-viewer"

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