embed({
$schema: "https://vega.github.io/schema/vega-lite/v5.json",
data: {values: trainsByDateAndService.objects()},
mark: "line",
encoding: {
x: {field: "date", type: "temporal"},
y: {field: "date_total_num_trips", type: "quantitative"},
color: {field: "service", type: "nominal"}
}
})