plot = Object({
"data": {
"values": [
{"fixed": 3, "variable": 10, "storage": 20},
{"fixed": 8, "variable": 7, "storage": 26}
]
},
"transform": [{"fold": ["variable", "fixed"], "as": ["key", "value"]}],
"mark": "line",
"encoding": {
"x": {"field": "storage", "type": "quantitative"},
"y": {"field": "value", "type": "quantitative"},
"color": {"field": "key", "type": "nominal"}
}
})