vega_gold = {
let obj = {
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"title" : {
"fontSize" : 24,
"anchor" : "start",
"text" : "Gold Prices over time"
},
"width" : 800,
"height" : 600
}
obj.data = {
"values" : gold_fixed
};
obj.mark = "line"
obj.encoding = {
"color": {"value": "#d4af37"},
"x": {"field": "date", "type": "temporal" , "title" : "Year"},
"y": {"field": "price",
"type": "quantitative" ,
"title" : "Price, $" ,
"axis" : {
"format" : "f",
"tickCount": 5
}
}
}
return obj;
}