R eurostat map unemployment

library(tidyverse)
library(eurostat)
library(sf)
library(ggthemes)

EU_shp_2  <- get_eurostat_geospatial(resolution = 10, nuts_level = 2, year = 2016)

GR_shp_2 <- EU_shp_2 %>% 
  filter(CNTR_CODE == 'EL') %>% 
  select(geo=NUTS_ID, NUTS_NAME, geometry)

ggplot(GR_shp_2) +
  geom_sf(fill = "blue", color = "white")

GR_une <- get_eurostat("lfst_r_lfu3rt", 
                       stringsAsFactors = FALSE, 
                       time_format = "num") %>% 
  filter(age == 'Y20-64') %>% 
  filter(sex == 'T') %>% 
  filter(time == 2018) %>% 
  filter(str_sub(geo, 1, 2) == 'EL' & str_length(geo) == 4) %>% 
  select(geo, values)

DF_une <- inner_join(GR_shp_2, GR_une, by = "geo") %>% 
  st_as_sf()

DF_une %>%
  ggplot(aes(x = NUTS_NAME, y = values)) +
  geom_col() +
  coord_flip()
  
ggplot(DF_une) +
  geom_sf(aes(fill = values), color = "white") +
  scale_fill_continuous_tableau(palette = "Red")

          

Συνδεθείτε για περισσότερες δυνατότητες αλληλεπίδρασης,
σχολιασμοί, εξωτερικοί σύνδεσμοι, βοήθεια, ψηφοφορίες, αρχεία, κτλ.

Creative Commons License
Εκπαιδευτικό υλικό από τον Αθανάσιο Σταυρακούδη σας παρέχετε κάτω από την άδεια Creative Commons Attribution-NonCommercial-ShareAlike 4.0 License.
Σας παρακαλώ να ενημερωθείτε για κάποιους επιπλέον περιορισμούς
http://stavrakoudis.econ.uoi.gr/stavrakoudis/?iid=401.