VegaLite({
data: {values: Countries},
width: 600,
height: 400,
mark: {type: "line", opacity: 0.5, strokeWidth: 1},
encoding: {
x: {field: "year", type: "ordinal"},
y: {field: "life_expect", type: "quantitative"},
detail: {field: "country", type: "nominal"}
}
})