plot = {
yield {
"$schema": "https://vega.github.io/schema/vega-lite/v3.4.0.json",
"title": "Iris Dataset",
"data": {"values":iris},
"config": {"view": {"width": 400, "height": 300}},
"mark": "point",
"encoding": {
"color": {"type": "nominal", "field": "species"},
"size":{"type": "quantitative", "field": "petal_length"},
"x": {"type": "quantitative", "field": "sepal_length"},
"y": {"type": "quantitative", "field": "sepal_width"}
}
}
}