embed({
$schema: "https://vega.github.io/schema/vega-lite/v5.json",
width: 1000,
height: 500,
layer: [
{
data: { values: accidents_by_hour.objects() },
mark: "line",
encoding: {
x: { field: "heure", type: "quantitative" },
y: { field: "accidents_by_hour", type: "quantitative" },
color: { field: "Side", type: "nominal" }
}
},
{
data: { values: accidents_by_hour_and_run.objects() },
mark: "bar",
encoding: {
x: { field: "heure", type: "quantitative" },
y: { field: "total_run", type: "quantitative" },
color: { value:'lightblue' }
}
}
]
});