Plot = import("https://cdn.jsdelivr.net/npm/@observablehq/plot/+esm")
/* source data */
narrative_data = FileAttachment("country_visuals/country_narratives.csv").csv({ "typed": true });
bar_data = FileAttachment("country_visuals/bar_data_index.csv").csv({ "typed": true });
radar_grid = FileAttachment("country_visuals/radar_grid.csv").csv({ "typed": true });
radar_axes = FileAttachment("country_visuals/radar_axes.csv").csv({ "typed": true });
radar_data = FileAttachment("country_visuals/radar_data_full.csv").csv({ "typed": true });
radar_imputed = FileAttachment("country_visuals/radar_imputed.csv").csv({ "typed": true });
/* country selectors */
country_codes = [
"AUS", "AUT", "BEL", "BGR", "CAN", "CHL", "HRV", "CZE", "DNK", "EST", "FIN",
"FRA", "DEU", "GRC", "HUN", "ISL", "IRL", "ISR", "ITA", "JPN", "LVA", "LTU",
"MEX", "NLD", "NZL", "NOR", "POL", "PRT", "ROU", "SVK", "SVN", "KOR", "ESP",
"SWE", "CHE", "TUR", "GBR", "USA"
]
countries = [
"Australia", "Austria", "Belgium", "Bulgaria", "Canada", "Chile", "Croatia",
"Czechia", "Denmark", "Estonia", "Finland", "France", "Germany", "Greece",
"Hungary", "Iceland", "Ireland", "Israel", "Italy", "Japan", "Latvia",
"Lithuania", "Mexico", "Netherlands", "New Zealand", "Norway", "Poland",
"Portugal", "Romania", "Slovakia", "Slovenia", "South Korea", "Spain",
"Sweden", "Switzerland", "Turkey", "United Kingdom",
"United States of America"
]
/* InCiSE data points */
incise_bar = bar_data.filter(function(df){
return "InCiSE" == df.cc_iso3c
});
incise_radar = radar_data.filter(function(df){
return "InCiSE" == df.cc_iso3c
});
set_val = function(input, value) {
input.value = value;
input.dispatchEvent(new Event("input"))
};
bar_plot.addEventListener("mousedown", (event) => {
if (bar_plot.value != null) {
if (bar_plot.value.cc_iso3c == "InCiSE") {
return null
}
var sel_country = countries[country_codes.indexOf(bar_plot.value.cc_iso3c)]
set_val(viewof usr_country, sel_country)
}
});
4 Country profiles of the 2019 InCiSE results
This chapter provides an interactive summary of each country’s results from the 2019 edition of the InCiSE Index. For the selected country, the bar chart shows the country’s score for the overall InCiSE Index (in blue) compared to the InCiSE average (in orange) and that of all other countries. The ‘radar chart’ highlights the selected country’s scores for each of the 12 indicators (in blue) compared with the InCiSE average (in orange), this chart highlights where a country performs particularly well compared to the average and where further analysis or attention may be beneficial.
As discussed at the start of Chapter 3, all scores in the InCiSE results are relative, meaning that the highest scoring country is assigned 1.0 and the lowest scoring country is assigned 0.0. Assessment of a country is therefore relative to others included in the Index only, and not an absolute measure.
Weaker scores do not reflect a view on prioritisation within a country, but instead can highlight opportunities to learn from other countries.
Appendix C provides tables of the country scores for each indicator. More detailed results of country scores, including for the metrics which underlie each indicator result, can be found on the InCiSE website. Further details about the methodological approach, including the construction of each indicator, can be found in the Technical Report.