hvega-0.12.0.7: tests/specs/gallery/advanced/advanced9.vl
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": {
"url": "https://vega.github.io/vega-lite/data/movies.json"
},
"description": "Production budget of the film with highest US Gross in each major genre.",
"encoding": {
"x": {
"aggregate": {
"argmax": "US_Gross"
},
"field": "Production_Budget",
"type": "quantitative"
},
"y": {
"field": "Major_Genre",
"type": "nominal"
}
},
"mark": "bar"
}