{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 550,
"height": 400,
"data": {
"url": "https://datagraphics.dc.scilifelab.se/api/dataset/9da043167b6241eda32b319622222c10.csv"
},
"mark": {
"type": "line",
"interpolate": "monotone"
},
"encoding": {
"x": {
"title": "Time of day",
"field": "datetime",
"type": "temporal",
"axis": {
"format": "%H:%m"
}
},
"y": {
"title": "Pressure",
"field": "pressure",
"type": "quantitative"
},
"color": {
"field": "type",
"type": "nominal",
"legend": {
"title": "Type"
}
}
}
}