-
Notifications
You must be signed in to change notification settings - Fork 0
/
worldmap.html
41 lines (38 loc) · 1.09 KB
/
worldmap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script>
// data from https://data.worldbank.org/indicator/SH.STA.DIAB.ZS
// accessed 2022-08-25
let data = [{
"locations": ["United States", "Germany", "Spain", "Angola", "Argentina"],
"z": [10.7, 6.9, 10.3, 4.6, 5.4],
"locationmode": "country names",
"type": "choropleth"
}];
let layout = {
"title": "Diabetes prevalence (% of population ages 20-79)",
"geo": {
"projection": {
"type": "robinson"
}
}
};
$(() => {
// everything here happens only after the page is loaded
Plotly.newPlot("myGraph", data, layout);
});
</script>
<style>
#myGraph {
width: 600px;
height: 400px
}
</style>
</head>
<body>
<div>Here is our graph:</div>
<div id="myGraph"></div>
</body>
</html>