viewof linked_chart = vl2({
$schema: "https://vega.github.io/schema/vega-lite/v4.json",
description: "A simple bar chart with embedded data.",
data: { values: restaured_data },
mark: "bar",
encoding: {
x: { field: "a", type: "ordinal", axis: { labelAngle: 0 } },
y: { field: "b", type: "quantitative" }
}
})