this post was submitted on 16 Dec 2023
208 points (93.3% liked)

Europe

8484 readers
2 users here now

News/Interesting Stories/Beautiful Pictures from Europe ๐Ÿ‡ช๐Ÿ‡บ

(Current banner: Thunder mountain, Germany, ๐Ÿ‡ฉ๐Ÿ‡ช ) Feel free to post submissions for banner pictures

Rules

(This list is obviously incomplete, but it will get expanded when necessary)

  1. Be nice to each other (e.g. No direct insults against each other);
  2. No racism, antisemitism, dehumanisation of minorities or glorification of National Socialism allowed;
  3. No posts linking to mis-information funded by foreign states or billionaires.

Also check out !yurop@lemm.ee

founded 2 years ago
MODERATORS
all 47 comments
sorted by: hot top controversial new old
[โ€“] rtxn@lemmy.world 65 points 2 years ago (3 children)

Not surprised about Hungary, but hoooly FUCK, what's going on in Poland?

[โ€“] letmesleep@feddit.de 65 points 2 years ago (1 children)

It's a big country with large regions that are still comparatively poor and agricultural. The latter two factors are what the EU pays for and the first works as a multiplicator.

Per capita it looks a bit different. According bpd.de the main recipient per capita in 2022 was Estonia with 677 Euros per capita and year and the main contributor is indeed Germany with 237 Euros. Poland "only" gets 279 Euros per person and year.

[โ€“] themurphy@lemmy.world 3 points 2 years ago (1 children)

Agriculture is a great point overlooked in this chart.

EU puts a lot of money into this, and Poland being a great exporter for this, they also receives alot from EU to be able to do this.

Why are we doing it then, if it's a net negative? It's not, because we can all get our bread (literally) this way. And Poland farmers can make a living making the country richer.

[โ€“] Ooops@kbin.social -1 points 2 years ago

All countries get agricultural subsidies and Poland is not one of the big ones. They sit on place 5 with all 4 before them production at least twice as much. (see here, page 10)

[โ€“] teslasaur@lemmy.world 1 points 2 years ago

War in Ukraine. A whole fuckload of people that seek asylum in Poland for obvious reasons.

[โ€“] taladar@feddit.de 33 points 2 years ago (1 children)

Would be nice to have the same data per capita.

[โ€“] tal@lemmy.today 33 points 2 years ago* (last edited 2 years ago) (2 children)

statistia-netcontrib.csv

country,netcontrib
DE,25572
FR,12380
NL,6929
IT,3337
SE,2826
DK,1766
AT,1540
FI,1109
IE,703
MT,-14
CY,-172
SI,-386
EE,-729
LT,-860
SK,-1398
LV,-1544
BG,-1727
HR,-1746
ES,-1946
LU,-2020
CZ,-2853
BE,-2950
PT,-3132
RO,-4096
HU,-4206
GR,-4278
PL,-11910

eu-contribution-per-capita.r

if (!require("pacman")) install.packages("pacman")
pacman::p_load(
            countrycode,
            dplyr,
            ggdark,
            ggplot2,
            r2country
        )

abs <- read.csv("statista-netcontrib.csv",header = TRUE)
abs2 <- cbind(abs,name = countrycode(abs$country,"iso2c","country.name")) 

df <- inner_join(country_names, abs2)
df2 <- inner_join(country_population, df)
df2$percap <- df2$netcontrib/df2$population2023*1000000

df3 <- arrange(df2,percap)

ggplot(df3, aes(x = percap, y = reorder(name, percap))) +
    geom_bar(stat = "identity") +
    dark_theme_gray() +
    ylab("Country") +
    xlab("Euros per capita") +
    scale_x_continuous(breaks = scales::pretty_breaks(n = 20)) +
    geom_text(aes(label = percap))

ggsave("euros-percap.png")

Full size image

Sorry about the broken escaping of the angle brackets (โ€œ<โ€ is โ€œ&lt;โ€) in the source; Lemmy is, regrettably, broken on that at the moment.

EDIT: Fixed Latvia country code error.

EDIT2: And Austria country code error.

[โ€“] tal@lemmy.today 13 points 2 years ago* (last edited 2 years ago) (1 children)

Also, a Markdown table rendition:

eu-contribution-per-capita-markdown.r

if (!require("pacman")) install.packages("pacman")
pacman::p_load(
            countrycode,
            dplyr,
            r2country,
            simplermarkdown
        )

abs &lt;- read.csv("statista-netcontrib.csv",header = TRUE)
abs2 &lt;- cbind(abs,name = countrycode(abs$country,"iso2c","country.name")) 

df &lt;- inner_join(country_names, abs2)
df2 &lt;- inner_join(country_population, df)
df2$percap &lt;- df2$netcontrib/df2$population2023*1000000

df3 &lt;- arrange(df2,-percap)

md_table(df3)

name percap
Netherlands 386.91124
Germany 302.86855
Denmark 297.09908
Sweden 267.98643
Finland 199.90810
France 181.71677
Austria 168.68113
Ireland 136.52768
Italy 56.76638
Malta -26.94577
Spain -40.25217
Slovenia -182.27546
Cyprus -187.34343
Romania -214.99549
Belgium -250.73894
Slovakia -257.60767
Bulgaria -267.84703
Portugal -299.21568
Lithuania -300.05251
Poland -315.86485
Greece -408.10926
Hungary -438.25808
Croatia -449.01298
Estonia -533.72029
Latvia -819.79399
Luxembourg -3056.85909
[โ€“] Whelks_chance@lemmy.world 3 points 2 years ago (1 children)

This is very clever. Is Lemmy actually running the code to achieve this, or did you paste it just so other people can replicate the process?

[โ€“] tal@lemmy.today 5 points 2 years ago

Nah, I just pasted it so that other people can reproduce.

[โ€“] interolivary@beehaw.org 11 points 2 years ago* (last edited 2 years ago) (1 children)

statistia-netcontrib.csv is using some weird country code that isn't ISO 3166-2, because it's got what I assume to be Latvia with the code LA which is actually Laos, and that's reflected on your chart too โ€“ I was initially a bit puzzled as to why Laos was listed as being in the EU. At a quick glance it seems to be the only weird one though

[โ€“] tal@lemmy.today 6 points 2 years ago* (last edited 2 years ago) (1 children)

That's just me not knowing my country codes. Over here, "LA" is generally Los Angeles. I'll fix it; thanks.

EDIT: Also, Austria appears to be "AT" rather than "AU". One more fix.

[โ€“] interolivary@beehaw.org 1 points 2 years ago

Ah I thought you pulled that from some Eurostat database and they were using wonky country codes. The AU / AT mixup is a classic one, and since the spelling of Austria and Australia is so close it's easy to miss that mistake โ€“ just like I did

[โ€“] CJOtheReal@ani.social 20 points 2 years ago (2 children)

When you look closely, the most undemocratic of them are also taking the most money...

[โ€“] zaphod@feddit.de 14 points 2 years ago (2 children)

The only truly undemocratic country on that list is Hungary.

[โ€“] CJOtheReal@ani.social 15 points 2 years ago (2 children)
[โ€“] zaphod@feddit.de 12 points 2 years ago (2 children)

We'll see, they just got a new governemnt, I hope the best for them.

[โ€“] CJOtheReal@ani.social 2 points 2 years ago (1 children)

Hoping for the best and preparing for the wost is the way of life.

As of now they are undemocratic as hell.

[โ€“] magikmw@lemm.ee 1 points 2 years ago

New PM is pro eu and the coalition is democratic. A lot of the judiciary corruption that happened is going to get reversed fast.

Day to day it's not really undemocratic, it was mostly about popular issues to solidify right wing outrage.

Still, I'm glad it's over.

[โ€“] NattyNatty2x4@beehaw.org 1 points 2 years ago (1 children)

We're there elections in Poland recently? What were the results?

[โ€“] magikmw@lemm.ee 4 points 2 years ago

Right "won" but progressives have a majority coalition that just elected a PM. We should be ok.

It's not all in leftism, but they are in the government, first time since before WW2.

In previous elections "left" was just previous regime surviviors.

[โ€“] DieguiTux8623@feddit.it 1 points 2 years ago

Isn't a rotten apple enough to spoil the whole basket? At least we have this proverb in my country...

[โ€“] FluffyPotato@lemm.ee 1 points 2 years ago

Meanwhile France is doing a police state and Italy elected fascists...

[โ€“] qaz@lemmy.world 17 points 2 years ago

Poland and hungary are constantly complaining about the EU and vetooing laws too

[โ€“] Pohl@lemmy.world 15 points 2 years ago

Interesting. The red bars almost exclusively belong to nations that had authoritarian single party government in the last half century.

When laid out like this you really see how deviating and long term the consequences of authoritarianism can be. Stable healthy democracy is a fucking superpower.

[โ€“] hOrni@lemmy.world 14 points 2 years ago

I'm Polish. So, if I understand this correctly, we are getting the most out of the EU, and yet still people here are complaining about it. And about Germany.

[โ€“] schmorpel@slrpnk.net 10 points 2 years ago (2 children)
[โ€“] janja@lemmy.world 10 points 2 years ago (2 children)

Both host import EU institutions. The income they provide for the locals, possibly indirectly, is also seen as a benefit.

[โ€“] naeap@sopuli.xyz 2 points 2 years ago (1 children)

Strasbourg in France should also make a dent into France's contributions then. Would be nice to know how much it would be, without those things calculated in - sure they are?

[โ€“] manucode 1 points 2 years ago (1 children)

Is the European Central Bank taken into consideration for Germany?

[โ€“] naeap@sopuli.xyz 1 points 2 years ago

No clue

Is there some stomach-able raw data?

[โ€“] KilroyIsHere@beehaw.org 1 points 2 years ago

Because the presence of the EU institutions this brings a lot of money in the economy

[โ€“] snaptastic@beehaw.org 4 points 2 years ago

Would be interesting to see this info per capita.

[โ€“] LEDZeppelin@lemmy.world -1 points 2 years ago

Poland - Kentucky of EU