vegalite({
data: { values: weathers },
mark: 'bar',
encoding: {
x: { bin: true, field: 'temp_max', type: 'quantitative' },
y: { aggregate: 'count', type: 'quantitative' },
column: { field: 'weather', type: 'nominal' },
color: {
field: 'weather', type: 'nominal',
scale: {
domain: ['sun', 'fog', 'drizzle', 'rain', 'snow'],
range: ['#e7ba52', '#c7c7c7', '#aec7e8', '#1f77b4', '#9467bd']
}
}
}
})