CT = VegaLite(
{
data: {values: data},
hconcat: [
{
"mark": { type: "point",filled: "true"},
encoding: {
x: { field: "precipitation", type: "quantitative"},
y: {field: "wind", type: "quantitative"},
color: {field: "weather", type: "nominal"}
},
width: 300,
height: 150},
{"mark": {type: "point",filled: "true"},
"encoding": {
x: { field: "temp_max", type: "quantitative"},
y: {field: "wind", type: "quantitative"},
color: {field: "weather", type: "nominal"}
},
width: 300,
height: 150
}]
})