Bar Chart showing Argmax Value
The production budget of the movie that has the highest US Gross in each major genre.
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v3.json",
"description": "The production budget of the movie that has the highest US Gross in each major genre.",
"data": {"url": "data/movies.json"},
"mark": "bar",
"encoding": {
"x": {"aggregate": {"argmax": "US_Gross"}, "field": "Production_Budget", "type": "quantitative"},
"y": {"field": "Major_Genre", "type": "nominal"}
}
}