Long-term unemployment (12 months and more) by NUTS 2 regions - lfst_r_lfu2ltu

Data - Eurostat

unit

Code
lfst_r_lfu2ltu %>%
  left_join(unit, by = "unit") %>%
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
unit Unit Nobs
PC_ACT Percentage of population in the labour force 963083
PC_UNE Percentage of unemployment 963083
THS_PER Thousand persons 963083

geo

Code
lfst_r_lfu2ltu %>%
  left_join(geo, by = "geo") %>%
  group_by(geo, Geo) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

time

Code
lfst_r_lfu2ltu %>%
  group_by(time) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}