Public
Edited
Apr 23, 2024
1 fork
5 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
filteredData = ghd_all_countries.filter(d=>d.country_iso3===selectedCountry)
Insert cell
Insert cell
Highcharts = {
const Highcharts = await require("highcharts");
await require("highcharts/highcharts-more.js");
await require("highcharts/modules/sunburst.js");
return Highcharts;
}
Insert cell
Insert cell
ghd_all_countries.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
country_regions.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
country_regions.csv
SELECT * FROM "country_regions"
Insert cell
countries = [...new Set(ghd_all_countries.map(d => d.country_iso3))].sort()
Insert cell
countryList = country_regions
.filter(d => countries.includes(d.country_iso3))
.map(d => [d.country_name, d.country_iso3])
.sort((a, b) => a[0].localeCompare(b[0]));
Insert cell
selectedCountryName = country_regions.filter(d=>d.country_iso3 === selectedCountry)[0].country_name
Insert cell
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:wght@300,400,500,600&display=swap');

body, text {
font-family: 'Roboto Condensed'!important;
}
h1, h2, p, table, label {
max-width:100%;
}

label {
font-weight:bold;
}

.main-level {
font-size: 20px;
}
</style>
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more