xxxxxxxxxx
<html>
<head>
<title>makeovermonday - w50</title>
<meta charset="utf-8" />
<script src="https://cdn.jsdelivr.net/npm/vega@5.9.0"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-lite@4.0.2"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-embed@6.2.1"></script>
<style media="screen">
/* Add space between Vega-Embed links */
.vega-actions a {
margin-right: 5px;
}
</style>
</head>
<body>
<h1>Fast Food Nation</h1>
<div id="vis"></div>
<script>
var vlSpec = {
$schema: 'https://vega.github.io/schema/vega-lite/v4.json',
"width": 400,
"height": 300,
"data": {
"url": "https://download.data.world/s/zdepjdaxjthd3vfuhtqq2fhabdsr42",
"format": {
"type": "csv"
}
},
"mark": {
"type": "point",
"tooltip": {
"content": "data"
}
},
"encoding": {
"x": {
"field": "loc",
type: 'quantitative'
},
"y": {
"field": "sales",
type: 'quantitative'
},
"size": {
"field": "vpl",
type: 'quantitative'
}
}
};
vegaEmbed('#vis', vlSpec);
</script>
</body>
</html>
https://cdn.jsdelivr.net/npm/vega@5.9.0
https://cdn.jsdelivr.net/npm/vega-lite@4.0.2
https://cdn.jsdelivr.net/npm/vega-embed@6.2.1