viewof MSRP_IC = VegaLite({
width: 750,
height: 400,
data: { values: data },
transform: [
{ filter: { field: "Make", oneOf: makeSelect2 } },
{ filter: { field: "Vehicle Style", oneOf: bodyTypeSelect2 } },
{ filter: { field: "Engine Fuel Type", oneOf: gasTypeSelect2 } }
],
layer: [
{
mark: {
type: "errorband",
extend: "ci",
opacity: "0.2"
},
encoding: {
y: {
field: "Insurance Cost",
type: "quantitative",
title: "Insurance Cost"
},
tooltip: null
}
},
{
mark: "circle",
selection: {
brush: {
type: "interval"
}
},
encoding: {
x: { field: "MSRP", type: "quantitative" },
y: {
field: "Insurance Cost",
type: "quantitative",
scale: { type: "log" }
},
color: {
condition: {
field: "Engine Fuel Type",
type: "nominal",
selection: "brush"
},
value: "lightgrey"
},
tooltip: [
{ field: "Make", type: "nominal" },
{ field: "Model", type: "nominal" },
{ field: "Vehicle Style", type: "nominal" },
{ field: "MSRP", type: "quantitative" },
{ field: "Engine Fuel Type", type: "nominal" },
{ field: "CMPG", type: "quantitative" },
{ field: "HMPG", type: "quantitative" }
],
size: {
value: 75
}
}
}
]
})