VegaLite({
data: {values: data},
mark: "rect",
encoding: {
x: {field: "weather", type: "nominal"},
y: {aggregate: "count", field: "*", type: "quantitative"},
color: {aggregate: "mean", field: "temp_max", type: "quantitative",
scale: {domain: [5, 20], range: ['#8AB9ED','#FDB813']}}
}
})