Skip to content

Commit eeb3436

Browse files
committedNov 18, 2025
updated
1 parent 53d7800 commit eeb3436

5 files changed

Lines changed: 646 additions & 607 deletions

File tree

 

‎fig_pca_iforest.pdf‎

-967 Bytes
Binary file not shown.

‎heatmap_anomalies.pdf‎

1.38 KB
Binary file not shown.

‎regional_anomaly_detection2.py‎

Lines changed: 42 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,20 @@ def download_tertiary_share(year: int) -> pd.DataFrame:
179179
return df
180180

181181

182+
def download_population_density(year: int) -> pd.DataFrame:
183+
"""
184+
Population density at NUTS2:
185+
dataset: demo_r_d3dens
186+
"""
187+
logging.info("Downloading population density from demo_r_d3dens ...")
188+
df = eurostat.get_data_df("demo_r_d3dens")
189+
df = eurostat_wide_to_long(df)
190+
191+
df = filter_nuts2_and_year(df, year)
192+
df = df[["geo", "time", "values"]].rename(columns={"values": "pop_density"})
193+
return df
194+
195+
182196
def build_regional_dataset(year: int) -> pd.DataFrame:
183197
"""
184198
Download all indicators for the specified year and merge by (geo, time).
@@ -191,10 +205,10 @@ def build_regional_dataset(year: int) -> pd.DataFrame:
191205
df_gdp = download_gdp_pc(year)
192206
df_unemp = download_unemployment_rate(year)
193207
df_tert = download_tertiary_share(year)
194-
208+
df_pop = download_population_density(year)
195209
# Merge step-by-step
196210
df = df_gdp.copy()
197-
for other in [df_unemp, df_tert]:
211+
for other in [df_unemp, df_tert, df_pop]:
198212
df = pd.merge(df, other, on=["geo", "time"], how="outer")
199213

200214
# Rename and basic cleaning
@@ -206,7 +220,7 @@ def build_regional_dataset(year: int) -> pd.DataFrame:
206220
df["region_code"] = df["region_code"].astype(str)
207221
df = df[df["region_code"].str.len() == 4].copy()
208222

209-
indicator_cols = ["gdp_pc_pps", "unemployment_rate", "tertiary_share_25_64"]
223+
indicator_cols = ["gdp_pc_pps", "unemployment_rate", "tertiary_share_25_64", "pop_density"]
210224

211225
# Collapse duplicates per region_code: first non-null per column
212226
def first_non_null(series: pd.Series):
@@ -219,6 +233,7 @@ def first_non_null(series: pd.Series):
219233
"gdp_pc_pps": first_non_null,
220234
"unemployment_rate": first_non_null,
221235
"tertiary_share_25_64": first_non_null,
236+
"pop_density": first_non_null,
222237
}
223238
)
224239

@@ -364,9 +379,9 @@ def plot_pca_iforest(df_out: pd.DataFrame, output_path: str = "fig_pca_iforest.p
364379
plt.scatter(normal["PC1"], normal["PC2"], alpha=0.6, label="Normal regions")
365380
plt.scatter(anomalies["PC1"], anomalies["PC2"], marker="x", s=80, label="IForest anomalies")
366381

367-
plt.xlabel("PC1")
368-
plt.ylabel("PC2")
369-
plt.title("PCA of regional indicators (Isolation Forest anomalies)")
382+
plt.xlabel("PC1", fontsize = 14)
383+
plt.ylabel("PC2", fontsize = 14)
384+
plt.title("PCA of regional indicators (Isolation Forest anomalies)", fontsize = 16)
370385
plt.legend()
371386
plt.tight_layout()
372387
plt.savefig(output_path)
@@ -481,7 +496,7 @@ def main():
481496
# ----------------------------------------------------------
482497
# Select the indicator columns
483498
# ----------------------------------------------------------
484-
indicators = ["gdp_pc_pps", "unemployment_rate", "tertiary_share_25_64"]
499+
indicators = ["gdp_pc_pps", "unemployment_rate", "pop_density", "tertiary_share_25_64"]
485500

486501
# Extract indicator matrix
487502
X = anom[indicators].copy()
@@ -493,15 +508,15 @@ def main():
493508
# Build heatmap DataFrame with region_code as index
494509
heat_df = pd.DataFrame(
495510
X_std,
496-
columns=["GDP per capita (std)", "Unemployment rate (std)", "Tertiary education (std)"],
511+
columns=["GDP per capita (std)", "Unemployment rate (std)", "Population density", "Tertiary education (std)"],
497512
index=anom["region_code"]
498513
)
499514

500515
# ----------------------------------------------------------
501516
# Plot heatmap
502517
# ----------------------------------------------------------
503-
plt.figure(figsize=(10, 16))
504-
sns.heatmap(
518+
plt.figure(figsize=(8, 8))
519+
ax = sns.heatmap(
505520
heat_df,
506521
cmap="coolwarm",
507522
center=0,
@@ -510,9 +525,23 @@ def main():
510525
cbar_kws={"label": "Standardized value (z-score)"}
511526
)
512527

513-
plt.title("Standardized Indicators for Anomalous NUTS2 Regions (2022)", fontsize=14)
514-
plt.xlabel("Indicators")
515-
plt.ylabel("Region")
528+
# Axis titles
529+
plt.title(
530+
"Standardized Indicators for Anomalous NUTS2 Regions (2022)",
531+
fontsize=16
532+
)
533+
plt.xlabel("Indicators", fontsize=14)
534+
plt.ylabel("Region", fontsize=14)
535+
536+
# Tick labels (x = indicators, y = regions)
537+
plt.xticks(fontsize=12, rotation=45, ha="right")
538+
plt.yticks(fontsize=12)
539+
540+
# Colour bar label + tick labels
541+
cbar = ax.collections[0].colorbar
542+
cbar.ax.set_ylabel("Standardized value (z-score)", fontsize=14)
543+
cbar.ax.tick_params(labelsize=12)
544+
516545
plt.tight_layout()
517546
plt.savefig("heatmap_anomalies.pdf")
518547
plt.close()

‎regional_anomaly_results.csv‎

Lines changed: 302 additions & 297 deletions
Large diffs are not rendered by default.

‎regional_indicators.csv‎

Lines changed: 302 additions & 297 deletions
Original file line numberDiff line numberDiff line change
@@ -1,297 +1,302 @@
1-
region_code,year,gdp_pc_pps,unemployment_rate,tertiary_share_25_64
2-
AT11,2022,86.0,3.9,31.4
3-
AT12,2022,101.0,13.2,34.1
4-
AT13,2022,140.0,20.7,45.6
5-
AT21,2022,110.0,3.9,33.3
6-
AT22,2022,114.0,9.9,32.2
7-
AT31,2022,127.0,6.6,32.4
8-
AT32,2022,149.0,2.8,33.2
9-
AT33,2022,127.0,2.8,31.9
10-
AT34,2022,147.0,3.0,29.9
11-
BE10,2022,194.0,23.8,53.5
12-
BE21,2022,141.0,8.0,47.1
13-
BE22,2022,96.0,7.7,43.7
14-
BE23,2022,113.0,5.0,49.6
15-
BE24,2022,134.0,12.9,51.6
16-
BE25,2022,116.0,5.6,39.8
17-
BE31,2022,145.0,8.2,60.7
18-
BE32,2022,73.0,20.5,34.2
19-
BE33,2022,86.0,14.6,41.5
20-
BE34,2022,74.0,4.7,42.1
21-
BE35,2022,79.0,16.2,43.3
22-
BG31,2022,41.0,23.8,18.8
23-
BG32,2022,42.0,19.5,26.3
24-
BG33,2022,48.0,13.0,28.7
25-
BG34,2022,58.0,12.3,21.8
26-
BG41,2022,97.0,12.3,43.2
27-
BG42,2022,43.0,6.3,22.8
28-
CH01,2022,,11.1,43.5
29-
CH02,2022,,8.7,40.8
30-
CH03,2022,,7.7,44.8
31-
CH04,2022,,8.0,55.2
32-
CH05,2022,,4.5,39.2
33-
CH06,2022,,5.1,44.1
34-
CH07,2022,,11.3,39.5
35-
CY00,2022,98.0,7.2,48.0
36-
CZ01,2022,199.0,2.1,51.5
37-
CZ02,2022,80.0,5.7,24.9
38-
CZ03,2022,74.0,9.5,21.7
39-
CZ04,2022,62.0,15.4,15.6
40-
CZ05,2022,71.0,9.8,22.9
41-
CZ06,2022,83.0,9.0,27.2
42-
CZ07,2022,71.0,18.0,24.0
43-
CZ08,2022,70.0,22.3,22.4
44-
DE11,2022,147.0,5.2,36.2
45-
DE12,2022,127.0,5.8,36.2
46-
DE13,2022,109.0,2.3,33.2
47-
DE14,2022,125.0,2.1,35.0
48-
DE21,2022,172.0,4.3,42.3
49-
DE22,2022,119.0,,27.2
50-
DE23,2022,124.0,,30.4
51-
DE24,2022,109.0,3.0,27.4
52-
DE25,2022,128.0,2.7,33.5
53-
DE26,2022,115.0,2.2,29.8
54-
DE27,2022,111.0,2.2,29.8
55-
DE30,2022,123.0,15.1,48.2
56-
DE40,2022,88.0,2.9,29.5
57-
DE50,2022,139.0,5.6,31.0
58-
DE60,2022,202.0,9.2,38.1
59-
DE71,2022,146.0,8.1,34.6
60-
DE72,2022,99.0,2.6,31.3
61-
DE73,2022,107.0,2.4,25.9
62-
DE80,2022,86.0,3.5,25.5
63-
DE91,2022,126.0,3.1,32.8
64-
DE92,2022,110.0,5.9,30.5
65-
DE93,2022,85.0,2.6,27.7
66-
DE94,2022,108.0,5.2,27.9
67-
DEA1,2022,119.0,8.9,28.7
68-
DEA2,2022,122.0,7.4,34.4
69-
DEA3,2022,99.0,8.8,27.4
70-
DEA4,2022,110.0,2.4,26.7
71-
DEA5,2022,102.0,8.4,26.4
72-
DEB1,2022,97.0,2.8,26.2
73-
DEB2,2022,87.0,,29.9
74-
DEB3,2022,117.0,6.4,32.5
75-
DEC0,2022,100.0,3.7,26.8
76-
DED2,2022,94.0,3.8,34.2
77-
DED4,2022,84.0,2.3,25.0
78-
DED5,2022,97.0,3.5,35.9
79-
DEE0,2022,87.0,12.1,25.3
80-
DEF0,2022,99.0,8.0,26.5
81-
DEG0,2022,86.0,2.7,27.8
82-
DK01,2022,192.0,8.6,53.1
83-
DK02,2022,87.0,7.3,32.9
84-
DK03,2022,111.0,7.6,34.7
85-
DK04,2022,113.0,7.1,41.3
86-
DK05,2022,100.0,7.6,34.8
87-
EA20,2022,,12.2,34.9
88-
EE00,2022,84.0,12.0,42.1
89-
EL30,2022,92.0,19.4,45.6
90-
EL41,2022,41.0,9.5,26.7
91-
EL42,2022,65.0,12.5,28.6
92-
EL43,2022,57.0,14.1,28.9
93-
EL51,2022,44.0,14.1,27.6
94-
EL52,2022,54.0,15.5,33.1
95-
EL53,2022,56.0,11.9,27.6
96-
EL54,2022,43.0,13.0,30.9
97-
EL61,2022,51.0,10.8,33.5
98-
EL62,2022,58.0,16.7,18.5
99-
EL63,2022,49.0,10.7,25.4
100-
EL64,2022,63.0,17.6,22.7
101-
EL65,2022,59.0,15.1,26.5
102-
ES11,2022,81.0,13.9,42.2
103-
ES12,2022,81.0,17.8,43.3
104-
ES13,2022,81.0,14.1,45.3
105-
ES21,2022,111.0,16.3,55.0
106-
ES22,2022,106.0,18.6,48.3
107-
ES23,2022,93.0,14.6,41.8
108-
ES24,2022,100.0,15.4,42.5
109-
ES30,2022,120.0,16.2,49.8
110-
ES41,2022,84.0,14.1,39.8
111-
ES42,2022,73.0,20.1,31.4
112-
ES43,2022,67.0,23.2,31.8
113-
ES51,2022,101.0,16.2,43.6
114-
ES52,2022,76.0,18.9,37.2
115-
ES53,2022,95.0,14.3,33.8
116-
ES61,2022,66.0,26.4,35.0
117-
ES62,2022,74.0,17.6,30.9
118-
ES63,2022,65.0,38.0,21.1
119-
ES64,2022,60.0,37.5,34.0
120-
ES70,2022,68.0,23.5,36.6
121-
FI19,2022,95.0,14.3,40.7
122-
FI1B,2022,135.0,16.6,50.5
123-
FI1C,2022,94.0,13.6,37.3
124-
FI1D,2022,93.0,14.5,38.2
125-
FI20,2022,109.0,,36.1
126-
FR10,2022,159.0,11.7,55.0
127-
FRB0,2022,80.0,13.4,34.9
128-
FRC1,2022,82.0,13.3,34.5
129-
FRC2,2022,74.0,12.9,36.8
130-
FRD1,2022,78.0,10.9,33.8
131-
FRD2,2022,85.0,13.6,35.4
132-
FRE1,2022,81.0,15.1,34.6
133-
FRE2,2022,75.0,16.7,31.8
134-
FRF1,2022,89.0,13.7,40.5
135-
FRF2,2022,89.0,14.1,28.9
136-
FRF3,2022,70.0,11.1,30.3
137-
FRG0,2022,87.0,11.3,40.0
138-
FRH0,2022,82.0,10.1,42.1
139-
FRI1,2022,85.0,13.3,41.2
140-
FRI2,2022,73.0,17.0,35.9
141-
FRI3,2022,80.0,14.2,36.8
142-
FRJ1,2022,74.0,15.6,37.6
143-
FRJ2,2022,86.0,9.0,44.3
144-
FRK1,2022,77.0,11.2,33.8
145-
FRK2,2022,96.0,13.1,46.8
146-
FRL0,2022,104.0,12.9,41.9
147-
FRM0,2022,76.0,6.1,32.2
148-
FRY1,2022,66.0,26.9,24.2
149-
FRY2,2022,69.0,16.5,29.3
150-
FRY3,2022,45.0,27.1,22.0
151-
FRY4,2022,63.0,25.5,24.0
152-
FRY5,2022,27.0,,
153-
HR02,2022,50.0,16.5,17.4
154-
HR03,2022,69.0,11.2,25.1
155-
HR05,2022,119.0,11.2,44.5
156-
HR06,2022,59.0,5.5,20.1
157-
HU11,2022,163.0,10.3,55.8
158-
HU12,2022,66.0,5.8,32.3
159-
HU21,2022,70.0,1.6,22.6
160-
HU22,2022,70.0,7.5,22.8
161-
HU23,2022,52.0,13.6,22.0
162-
HU31,2022,49.0,13.3,20.0
163-
HU32,2022,49.0,17.5,20.8
164-
HU33,2022,55.0,13.2,22.8
165-
IE04,2022,102.0,4.8,49.6
166-
IE05,2022,269.0,8.0,50.5
167-
IE06,2022,265.0,11.1,57.0
168-
IS00,2022,,7.3,42.9
169-
ITC1,2022,100.0,9.6,19.9
170-
ITC2,2022,127.0,5.4,19.6
171-
ITC3,2022,102.0,11.5,22.3
172-
ITC4,2022,133.0,6.4,21.8
173-
ITF1,2022,83.0,11.1,21.6
174-
ITF2,2022,72.0,15.1,20.2
175-
ITF3,2022,63.0,25.3,16.9
176-
ITF4,2022,64.0,14.1,16.2
177-
ITF5,2022,75.0,6.6,17.5
178-
ITF6,2022,57.0,16.7,16.6
179-
ITG1,2022,61.0,22.9,15.2
180-
ITG2,2022,71.0,14.7,17.9
181-
ITH1,2022,162.0,3.2,18.1
182-
ITH2,2022,127.0,4.9,21.4
183-
ITH3,2022,110.0,6.4,19.7
184-
ITH4,2022,104.0,7.7,21.3
185-
ITH5,2022,118.0,7.0,22.8
186-
ITI1,2022,103.0,8.0,21.5
187-
ITI2,2022,83.0,10.2,22.5
188-
ITI3,2022,90.0,8.3,22.6
189-
ITI4,2022,115.0,11.0,26.7
190-
LT01,2022,131.0,14.9,62.1
191-
LT02,2022,70.0,16.9,39.7
192-
LU00,2022,252.0,8.7,52.3
193-
LV00,2022,69.0,14.9,39.5
194-
ME00,2022,49.0,,
195-
MK00,2022,42.0,,
196-
MT00,2022,105.0,4.4,31.8
197-
NL11,2022,140.0,7.2,42.4
198-
NL12,2022,101.0,6.4,34.1
199-
NL13,2022,94.0,4.7,36.6
200-
NL21,2022,114.0,4.6,40.9
201-
NL22,2022,113.0,6.0,42.4
202-
NL23,2022,102.0,6.6,35.9
203-
NL31,2022,,6.0,56.1
204-
NL32,2022,175.0,5.8,51.6
205-
NL33,2022,,6.4,45.7
206-
NL34,2022,110.0,3.3,32.1
207-
NL35,2022,159.0,,
208-
NL36,2022,129.0,,
209-
NL41,2022,136.0,4.6,43.0
210-
NL42,2022,111.0,6.3,37.8
211-
NO02,2022,,,39.2
212-
NO06,2022,,2.5,47.3
213-
NO07,2022,,2.2,42.9
214-
NO08,2022,,9.8,51.9
215-
NO09,2022,,8.4,42.3
216-
NO0A,2022,,6.9,48.6
217-
PL21,2022,70.0,3.3,36.2
218-
PL22,2022,82.0,2.5,33.0
219-
PL41,2022,82.0,2.5,28.9
220-
PL42,2022,64.0,2.4,33.0
221-
PL43,2022,64.0,,28.8
222-
PL51,2022,84.0,15.5,36.1
223-
PL52,2022,64.0,2.7,28.0
224-
PL61,2022,65.0,4.8,28.2
225-
PL62,2022,56.0,3.4,28.0
226-
PL63,2022,77.0,2.6,38.6
227-
PL71,2022,74.0,3.8,30.4
228-
PL72,2022,57.0,4.7,30.9
229-
PL81,2022,55.0,5.6,29.8
230-
PL82,2022,55.0,5.4,30.6
231-
PL84,2022,61.0,2.5,34.7
232-
PL91,2022,152.0,3.1,57.7
233-
PL92,2022,74.0,4.0,29.7
234-
PT11,2022,66.0,6.1,25.8
235-
PT15,2022,84.0,7.1,25.3
236-
PT16,2022,,4.8,
237-
PT17,2022,,11.0,
238-
PT18,2022,,5.1,
239-
PT19,2022,68.0,4.1,30.6
240-
PT1A,2022,120.0,9.6,41.5
241-
PT1B,2022,53.0,14.2,32.4
242-
PT1C,2022,74.0,5.7,22.3
243-
PT1D,2022,60.0,5.8,22.7
244-
PT20,2022,67.0,7.6,16.6
245-
PT30,2022,82.0,6.8,22.2
246-
RO11,2022,67.0,8.3,18.2
247-
RO12,2022,66.0,22.4,18.9
248-
RO21,2022,44.0,11.3,14.0
249-
RO22,2022,58.0,16.7,14.0
250-
RO31,2022,57.0,16.7,13.7
251-
RO32,2022,179.0,3.1,42.2
252-
RO41,2022,59.0,22.4,17.6
253-
RO42,2022,74.0,3.8,18.3
254-
RS11,2022,74.0,14.7,42.7
255-
RS12,2022,44.0,13.3,21.4
256-
RS21,2022,30.0,10.5,18.8
257-
RS22,2022,34.0,14.4,21.0
258-
SE11,2022,155.0,23.8,57.4
259-
SE12,2022,99.0,31.5,45.4
260-
SE21,2022,99.0,21.8,40.3
261-
SE22,2022,98.0,28.1,49.2
262-
SE23,2022,111.0,21.0,48.8
263-
SE31,2022,94.0,25.1,38.3
264-
SE32,2022,104.0,23.2,42.9
265-
SE33,2022,122.0,19.5,43.8
266-
SI03,2022,72.0,10.5,35.7
267-
SI04,2022,107.0,7.7,45.1
268-
SK01,2022,150.0,2.3,47.0
269-
SK02,2022,64.0,16.6,24.8
270-
SK03,2022,61.0,41.6,26.6
271-
SK04,2022,53.0,63.2,28.2
272-
TR10,2022,111.0,9.4,28.2
273-
TR21,2022,85.0,7.2,20.4
274-
TR22,2022,62.0,5.1,23.4
275-
TR31,2022,84.0,13.0,27.7
276-
TR32,2022,60.0,7.2,24.6
277-
TR33,2022,57.0,4.8,18.0
278-
TR41,2022,74.0,7.8,25.4
279-
TR42,2022,90.0,9.3,21.9
280-
TR51,2022,89.0,12.3,33.6
281-
TR52,2022,55.0,5.5,19.0
282-
TR61,2022,68.0,8.0,26.7
283-
TR62,2022,57.0,11.2,21.4
284-
TR63,2022,45.0,12.2,19.9
285-
TR71,2022,51.0,7.3,20.1
286-
TR72,2022,50.0,8.0,22.3
287-
TR81,2022,53.0,9.8,19.7
288-
TR82,2022,48.0,5.3,20.0
289-
TR83,2022,40.0,5.4,19.1
290-
TR90,2022,38.0,5.8,21.1
291-
TRA1,2022,40.0,6.7,20.6
292-
TRA2,2022,28.0,12.3,13.6
293-
TRB1,2022,37.0,6.0,21.6
294-
TRB2,2022,25.0,16.6,13.1
295-
TRC1,2022,50.0,8.8,18.3
296-
TRC2,2022,26.0,10.8,15.1
297-
TRC3,2022,35.0,16.7,14.9
1+
region_code,year,gdp_pc_pps,unemployment_rate,tertiary_share_25_64,pop_density
2+
AL01,2022,,,,74.0
3+
AL02,2022,,,,238.8
4+
AL03,2022,,,,64.9
5+
AT11,2022,86.0,3.9,31.4,79.2
6+
AT12,2022,101.0,13.2,34.1,90.4
7+
AT13,2022,140.0,20.7,45.6,4941.5
8+
AT21,2022,110.0,3.9,33.3,60.5
9+
AT22,2022,114.0,9.9,32.2,77.5
10+
AT31,2022,127.0,6.6,32.4,129.2
11+
AT32,2022,149.0,2.8,33.2,80.1
12+
AT33,2022,127.0,2.8,31.9,61.4
13+
AT34,2022,147.0,3.0,29.9,159.6
14+
BE10,2022,194.0,23.8,53.5,7660.0
15+
BE21,2022,141.0,8.0,47.1,678.8
16+
BE22,2022,96.0,7.7,43.7,373.8
17+
BE23,2022,113.0,5.0,49.6,523.4
18+
BE24,2022,134.0,12.9,51.6,558.7
19+
BE25,2022,116.0,5.6,39.8,386.2
20+
BE31,2022,145.0,8.2,60.7,375.8
21+
BE32,2022,73.0,20.5,34.2,357.3
22+
BE33,2022,86.0,14.6,41.5,291.6
23+
BE34,2022,74.0,4.7,42.1,66.4
24+
BE35,2022,79.0,16.2,43.3,137.8
25+
BG31,2022,41.0,23.8,18.8,35.9
26+
BG32,2022,42.0,19.5,26.3,47.1
27+
BG33,2022,48.0,13.0,28.7,56.7
28+
BG34,2022,58.0,12.3,21.8,48.5
29+
BG41,2022,97.0,12.3,43.2,99.7
30+
BG42,2022,43.0,6.3,22.8,58.9
31+
CH01,2022,,11.1,43.5,205.2
32+
CH02,2022,,8.7,40.8,196.2
33+
CH03,2022,,7.7,44.8,619.0
34+
CH04,2022,,8.0,55.2,950.6
35+
CH05,2022,,4.5,39.2,107.3
36+
CH06,2022,,5.1,44.1,196.9
37+
CH07,2022,,11.3,39.5,129.2
38+
CY00,2022,98.0,7.2,48.0,100.6
39+
CZ01,2022,199.0,2.1,51.5,2714.2
40+
CZ02,2022,80.0,5.7,24.9,131.8
41+
CZ03,2022,74.0,9.5,21.7,72.1
42+
CZ04,2022,62.0,15.4,15.6,129.1
43+
CZ05,2022,71.0,9.8,22.9,123.6
44+
CZ06,2022,83.0,9.0,27.2,124.8
45+
CZ07,2022,71.0,18.0,24.0,132.0
46+
CZ08,2022,70.0,22.3,22.4,222.8
47+
DE11,2022,147.0,5.2,36.2,393.1
48+
DE12,2022,127.0,5.8,36.2,411.4
49+
DE13,2022,109.0,2.3,33.2,247.8
50+
DE14,2022,125.0,2.1,35.0,216.7
51+
DE21,2022,172.0,4.3,42.3,274.5
52+
DE22,2022,119.0,,27.2,121.8
53+
DE23,2022,124.0,,30.4,115.3
54+
DE24,2022,109.0,3.0,27.4,146.4
55+
DE25,2022,128.0,2.7,33.5,246.7
56+
DE26,2022,115.0,2.2,29.8,154.9
57+
DE27,2022,111.0,2.2,29.8,193.3
58+
DE30,2022,123.0,15.1,48.2,4320.5
59+
DE40,2022,88.0,2.9,29.5,87.6
60+
DE50,2022,139.0,5.6,31.0,1754.8
61+
DE60,2022,202.0,9.2,38.1,2596.2
62+
DE71,2022,146.0,8.1,34.6,542.8
63+
DE72,2022,99.0,2.6,31.3,194.2
64+
DE73,2022,107.0,2.4,25.9,146.2
65+
DE80,2022,86.0,3.5,25.5,70.6
66+
DE91,2022,126.0,3.1,32.8,196.7
67+
DE92,2022,110.0,5.9,30.5,237.3
68+
DE93,2022,85.0,2.6,27.7,112.0
69+
DE94,2022,108.0,5.2,27.9,171.6
70+
DEA1,2022,119.0,8.9,28.7,1007.8
71+
DEA2,2022,122.0,7.4,34.4,612.5
72+
DEA3,2022,99.0,8.8,27.4,381.8
73+
DEA4,2022,110.0,2.4,26.7,317.6
74+
DEA5,2022,102.0,8.4,26.4,447.4
75+
DEB1,2022,97.0,2.8,26.2,188.7
76+
DEB2,2022,87.0,,29.9,108.3
77+
DEB3,2022,117.0,6.4,32.5,303.7
78+
DEC0,2022,100.0,3.7,26.8,388.7
79+
DED2,2022,94.0,3.8,34.2,204.1
80+
DED4,2022,84.0,2.3,25.0,215.0
81+
DED5,2022,97.0,3.5,35.9,272.1
82+
DEE0,2022,87.0,12.1,25.3,106.7
83+
DEF0,2022,99.0,8.0,26.5,190.2
84+
DEG0,2022,86.0,2.7,27.8,130.9
85+
DK01,2022,192.0,8.6,53.1,772.0
86+
DK02,2022,87.0,7.3,32.9,119.6
87+
DK03,2022,111.0,7.6,34.7,102.8
88+
DK04,2022,113.0,7.1,41.3,105.8
89+
DK05,2022,100.0,7.6,34.8,76.9
90+
EA20,2022,,12.2,34.9,
91+
EE00,2022,84.0,12.0,42.1,31.3
92+
EFTA,2022,,,,29.0
93+
EL30,2022,92.0,19.4,45.6,1003.4
94+
EL41,2022,41.0,9.5,26.7,51.3
95+
EL42,2022,65.0,12.5,28.6,62.5
96+
EL43,2022,57.0,14.1,28.9,75.0
97+
EL51,2022,44.0,14.1,27.6,40.0
98+
EL52,2022,54.0,15.5,33.1,96.6
99+
EL53,2022,56.0,11.9,27.6,27.3
100+
EL54,2022,43.0,13.0,30.9,35.1
101+
EL61,2022,51.0,10.8,33.5,49.1
102+
EL62,2022,58.0,16.7,18.5,89.3
103+
EL63,2022,49.0,10.7,25.4,58.4
104+
EL64,2022,63.0,17.6,22.7,32.8
105+
EL65,2022,59.0,15.1,26.5,34.7
106+
ES11,2022,81.0,13.9,42.2,91.8
107+
ES12,2022,81.0,17.8,43.3,95.2
108+
ES13,2022,81.0,14.1,45.3,111.4
109+
ES21,2022,111.0,16.3,55.0,307.5
110+
ES22,2022,106.0,18.6,48.3,64.6
111+
ES23,2022,93.0,14.6,41.8,63.8
112+
ES24,2022,100.0,15.4,42.5,28.1
113+
ES30,2022,120.0,16.2,49.8,853.9
114+
ES41,2022,84.0,14.1,39.8,25.4
115+
ES42,2022,73.0,20.1,31.4,26.2
116+
ES43,2022,67.0,23.2,31.8,25.8
117+
ES51,2022,101.0,16.2,43.6,245.0
118+
ES52,2022,76.0,18.9,37.2,223.1
119+
ES53,2022,95.0,14.3,33.8,241.0
120+
ES61,2022,66.0,26.4,35.0,98.5
121+
ES62,2022,74.0,17.6,30.9,136.3
122+
ES63,2022,65.0,38.0,21.1,4152.7
123+
ES64,2022,60.0,37.5,34.0,6086.6
124+
ES70,2022,68.0,23.5,36.6,296.3
125+
FI19,2022,95.0,14.3,40.7,23.7
126+
FI1B,2022,135.0,16.6,50.5,189.5
127+
FI1C,2022,94.0,13.6,37.3,36.4
128+
FI1D,2022,93.0,14.5,38.2,6.2
129+
FI20,2022,109.0,,36.1,19.5
130+
FR10,2022,159.0,11.7,55.0,1037.0
131+
FRB0,2022,80.0,13.4,34.9,65.8
132+
FRC1,2022,82.0,13.3,34.5,51.4
133+
FRC2,2022,74.0,12.9,36.8,72.8
134+
FRD1,2022,78.0,10.9,33.8,83.3
135+
FRD2,2022,85.0,13.6,35.4,152.0
136+
FRE1,2022,81.0,15.1,34.6,328.3
137+
FRE2,2022,75.0,16.7,31.8,99.0
138+
FRF1,2022,89.0,13.7,40.5,233.1
139+
FRF2,2022,89.0,14.1,28.9,51.3
140+
FRF3,2022,70.0,11.1,30.3,98.7
141+
FRG0,2022,87.0,11.3,40.0,120.8
142+
FRH0,2022,82.0,10.1,42.1,125.3
143+
FRI1,2022,85.0,13.3,41.2,86.2
144+
FRI2,2022,73.0,17.0,35.9,42.9
145+
FRI3,2022,80.0,14.2,36.8,70.8
146+
FRJ1,2022,74.0,15.6,37.6,107.4
147+
FRJ2,2022,86.0,9.0,44.3,69.6
148+
FRK1,2022,77.0,11.2,33.8,52.6
149+
FRK2,2022,96.0,13.1,46.8,153.9
150+
FRL0,2022,104.0,12.9,41.9,165.9
151+
FRM0,2022,76.0,6.1,32.2,40.7
152+
FRY1,2022,66.0,26.9,24.2,246.7
153+
FRY2,2022,69.0,16.5,29.3,326.8
154+
FRY3,2022,45.0,27.1,22.0,3.5
155+
FRY4,2022,63.0,25.5,24.0,356.7
156+
FRY5,2022,27.0,,,835.4
157+
HR02,2022,50.0,16.5,17.4,44.1
158+
HR03,2022,69.0,11.2,25.1,52.9
159+
HR05,2022,119.0,11.2,44.5,
160+
HR06,2022,59.0,5.5,20.1,
161+
HU11,2022,163.0,10.3,55.8,3277.9
162+
HU12,2022,66.0,5.8,32.3,210.5
163+
HU21,2022,70.0,1.6,22.6,99.1
164+
HU22,2022,70.0,7.5,22.8,87.7
165+
HU23,2022,52.0,13.6,22.0,62.5
166+
HU31,2022,49.0,13.3,20.0,82.6
167+
HU32,2022,49.0,17.5,20.8,80.9
168+
HU33,2022,55.0,13.2,22.8,66.4
169+
IE04,2022,102.0,4.8,49.6,36.7
170+
IE05,2022,269.0,8.0,50.5,58.6
171+
IE06,2022,265.0,11.1,57.0,179.9
172+
IS00,2022,,7.3,42.9,3.8
173+
ITC1,2022,100.0,9.6,19.9,169.1
174+
ITC2,2022,127.0,5.4,19.6,38.0
175+
ITC3,2022,102.0,11.5,22.3,278.9
176+
ITC4,2022,133.0,6.4,21.8,432.1
177+
ITF1,2022,83.0,11.1,21.6,117.9
178+
ITF2,2022,72.0,15.1,20.2,65.6
179+
ITF3,2022,63.0,25.3,16.9,412.0
180+
ITF4,2022,64.0,14.1,16.2,202.9
181+
ITF5,2022,75.0,6.6,17.5,53.8
182+
ITF6,2022,57.0,16.7,16.6,121.9
183+
ITG1,2022,61.0,22.9,15.2,187.7
184+
ITG2,2022,71.0,14.7,17.9,66.2
185+
ITH1,2022,162.0,3.2,18.1,72.4
186+
ITH2,2022,127.0,4.9,21.4,88.0
187+
ITH3,2022,110.0,6.4,19.7,279.5
188+
ITH4,2022,104.0,7.7,21.3,157.8
189+
ITH5,2022,118.0,7.0,22.8,200.6
190+
ITI1,2022,103.0,8.0,21.5,160.6
191+
ITI2,2022,83.0,10.2,22.5,103.3
192+
ITI3,2022,90.0,8.3,22.6,158.3
193+
ITI4,2022,115.0,11.0,26.7,337.2
194+
LI00,2022,,,,250.0
195+
LT01,2022,131.0,14.9,62.1,88.4
196+
LT02,2022,70.0,16.9,39.7,37.5
197+
LU00,2022,252.0,8.7,52.3,252.6
198+
LV00,2022,69.0,14.9,39.5,29.7
199+
ME00,2022,49.0,,,45.3
200+
MK00,2022,42.0,,,73.7
201+
MT00,2022,105.0,4.4,31.8,1696.8
202+
NL11,2022,140.0,7.2,42.4,251.3
203+
NL12,2022,101.0,6.4,34.1,193.3
204+
NL13,2022,94.0,4.7,36.6,187.2
205+
NL21,2022,114.0,4.6,40.9,350.4
206+
NL22,2022,113.0,6.0,42.4,424.4
207+
NL23,2022,102.0,6.6,35.9,306.4
208+
NL31,2022,,6.0,56.1,981.3
209+
NL32,2022,175.0,5.8,51.6,1064.7
210+
NL33,2022,,6.4,45.7,1310.9
211+
NL34,2022,110.0,3.3,32.1,215.7
212+
NL35,2022,159.0,,,
213+
NL36,2022,129.0,,,
214+
NL41,2022,136.0,4.6,43.0,526.0
215+
NL42,2022,111.0,6.3,37.8,520.8
216+
NO02,2022,,,39.2,7.5
217+
NO06,2022,,2.5,47.3,12.1
218+
NO07,2022,,2.2,42.9,4.5
219+
NO08,2022,,9.8,51.9,
220+
NO09,2022,,8.4,42.3,
221+
NO0A,2022,,6.9,48.6,
222+
PL21,2022,70.0,3.3,36.2,220.9
223+
PL22,2022,82.0,2.5,33.0,350.5
224+
PL41,2022,82.0,2.5,28.9,116.9
225+
PL42,2022,64.0,2.4,33.0,72.9
226+
PL43,2022,64.0,,28.8,69.2
227+
PL51,2022,84.0,15.5,36.1,142.5
228+
PL52,2022,64.0,2.7,28.0,96.6
229+
PL61,2022,65.0,4.8,28.2,110.9
230+
PL62,2022,56.0,3.4,28.0,57.0
231+
PL63,2022,77.0,2.6,38.6,129.8
232+
PL71,2022,74.0,3.8,30.4,129.8
233+
PL72,2022,57.0,4.7,30.9,97.8
234+
PL81,2022,55.0,5.6,29.8,78.5
235+
PL82,2022,55.0,5.4,30.6,111.0
236+
PL84,2022,61.0,2.5,34.7,54.3
237+
PL91,2022,152.0,3.1,57.7,542.7
238+
PL92,2022,74.0,4.0,29.7,75.8
239+
PT11,2022,66.0,6.1,25.8,171.7
240+
PT15,2022,84.0,7.1,25.3,96.1
241+
PT16,2022,,4.8,,80.2
242+
PT17,2022,,11.0,,1026.6
243+
PT18,2022,,5.1,,22.9
244+
PT19,2022,68.0,4.1,30.6,
245+
PT1A,2022,120.0,9.6,41.5,
246+
PT1B,2022,53.0,14.2,32.4,
247+
PT1C,2022,74.0,5.7,22.3,
248+
PT1D,2022,60.0,5.8,22.7,
249+
PT20,2022,67.0,7.6,16.6,103.9
250+
PT30,2022,82.0,6.8,22.2,317.1
251+
RO11,2022,67.0,8.3,18.2,74.3
252+
RO12,2022,66.0,22.4,18.9,67.0
253+
RO21,2022,44.0,11.3,14.0,88.3
254+
RO22,2022,58.0,16.7,14.0,70.0
255+
RO31,2022,57.0,16.7,13.7,84.1
256+
RO32,2022,179.0,3.1,42.2,1299.4
257+
RO41,2022,59.0,22.4,17.6,65.1
258+
RO42,2022,74.0,3.8,18.3,52.4
259+
RS11,2022,74.0,14.7,42.7,
260+
RS12,2022,44.0,13.3,21.4,
261+
RS21,2022,30.0,10.5,18.8,
262+
RS22,2022,34.0,14.4,21.0,
263+
SE11,2022,155.0,23.8,57.4,372.1
264+
SE12,2022,99.0,31.5,45.4,45.7
265+
SE21,2022,99.0,21.8,40.3,26.6
266+
SE22,2022,98.0,28.1,49.2,112.8
267+
SE23,2022,111.0,21.0,48.8,71.6
268+
SE31,2022,94.0,25.1,38.3,13.5
269+
SE32,2022,104.0,23.2,42.9,5.3
270+
SE33,2022,122.0,19.5,43.8,3.5
271+
SI03,2022,72.0,10.5,35.7,89.7
272+
SI04,2022,107.0,7.7,45.1,128.8
273+
SK01,2022,150.0,2.3,47.0,359.2
274+
SK02,2022,64.0,16.6,24.8,121.9
275+
SK03,2022,61.0,41.6,26.6,80.8
276+
SK04,2022,53.0,63.2,28.2,101.4
277+
TR10,2022,111.0,9.4,28.2,3059.2
278+
TR21,2022,85.0,7.2,20.4,102.1
279+
TR22,2022,62.0,5.1,23.4,76.2
280+
TR31,2022,84.0,13.0,27.7,379.2
281+
TR32,2022,60.0,7.2,24.6,101.9
282+
TR33,2022,57.0,4.8,18.0,70.4
283+
TR41,2022,74.0,7.8,25.4,150.4
284+
TR42,2022,90.0,9.3,21.9,206.1
285+
TR51,2022,89.0,12.3,33.6,232.5
286+
TR52,2022,55.0,5.5,19.0,52.9
287+
TR61,2022,68.0,8.0,26.7,94.8
288+
TR62,2022,57.0,11.2,21.4,144.2
289+
TR63,2022,45.0,12.2,19.9,147.6
290+
TR71,2022,51.0,7.3,20.1,51.5
291+
TR72,2022,50.0,8.0,22.3,42.0
292+
TR81,2022,53.0,9.8,19.7,110.1
293+
TR82,2022,48.0,5.3,20.0,30.0
294+
TR83,2022,40.0,5.4,19.1,75.2
295+
TR90,2022,38.0,5.8,21.1,77.1
296+
TRA1,2022,40.0,6.7,20.6,26.5
297+
TRA2,2022,28.0,12.3,13.6,36.8
298+
TRB1,2022,37.0,6.0,21.6,48.8
299+
TRB2,2022,25.0,16.6,13.1,53.6
300+
TRC1,2022,50.0,8.8,18.3,192.7
301+
TRC2,2022,26.0,10.8,15.1,116.4
302+
TRC3,2022,35.0,16.7,14.9,92.6

0 commit comments

Comments
 (0)
Please sign in to comment.