vl.markLine()
.title("eCDF : Distribution of the death rate fof all the states in the US")
.data(data1)
.transform({
"sort": [{"field": "RDEATH2019"}],
"window": [{"op": "count", "field": "count", "as": "Cumulative Count"}],
"frame": [null, 0]
})
.encode(
vl.x().fieldQ('RDEATH2019'),
vl.y().fieldQ('Cumulative Count'),
)
.width(700)
.render()