vegalite({
$schema: "https://vega.github.io/schema/vega-lite/v3.json",
width: 400,
height: 400,
title: "Talents Inflow",
data: {values: selectedData},
mark: {type: "line", tooltip: {"content": "data"}},
encoding: {
x: {field: "year", type: "temporal",
axis: {title: "Year",tickWidth: 5}},
y: {field: "number", type: "quantitative",
axis: {title: "Number of talents migrating"}} ,
color: {field: "University", type: "nominal"}
}
})